Ian Scott 079e8469ab Hide lots of values in the advanced list před 23 roky
..
CMakeLists.txt c5381e8588 ENH: Added support for using backslash-style escaping in CMakeLists.txt file arguments. This allows double quotes to be used in arguments. před 25 roky
Dart.cmake e89040f463 Dart now has a configure option před 23 roky
Documentation.cmake 1362bb41c8 Add module to find gnuplot před 24 roky
FindAVIFile.cmake 0b288b6121 Fixed mistake in comments před 23 roky
FindCABLE.cmake 64a1707aee ENH: clean modules (doc, make stuff advanced, etc.) před 24 roky
FindCurses.cmake 0d252c941d ENH: Added /lib to curses search path. před 24 roky
FindCygwin.cmake cb4f04c94e Remove unneeded test and code duplication. Add WIN32 test. Make all ADVANCED. před 24 roky
FindDart.cmake e2294ae591 ENH: look for Dart in c: před 24 roky
FindDoxygen.cmake cb4f04c94e Remove unneeded test and code duplication. Add WIN32 test. Make all ADVANCED. před 24 roky
FindFLTK.cmake 079e8469ab Hide lots of values in the advanced list před 23 roky
FindGCCXML.cmake 11d50284ed ENH: Updated for version 0.2 of GCC-XML. před 24 roky
FindGLU.cmake 0b288b6121 Fixed mistake in comments před 23 roky
FindGLUT.cmake 079e8469ab Hide lots of values in the advanced list před 23 roky
FindGTK.cmake 079e8469ab Hide lots of values in the advanced list před 23 roky
FindGnuplot.cmake 1362bb41c8 Add module to find gnuplot před 24 roky
FindHhc.cmake cb4f04c94e Remove unneeded test and code duplication. Add WIN32 test. Make all ADVANCED. před 24 roky
FindITK.cmake 0fb47ad240 *** empty log message *** před 24 roky
FindJNI.cmake 6bdf15c4de ENH: Added /usr/local/lib/java search paths. před 24 roky
FindJPEG.cmake 0b288b6121 Fixed mistake in comments před 23 roky
FindJava.cmake ab4e894b92 Add module that finds java executables. This module should find java, javac, and jar. před 24 roky
FindMFC.cmake 0059db268c A simple FindMFC module for consistency před 23 roky
FindMPEG.cmake d7ebdb9da0 Add an MPEG finder in the new format - functionality copied from VXL. před 23 roky
FindMPI.cmake 555a7f88aa Add mpi search paths for Debian před 24 roky
FindOpenGL.cmake 079e8469ab Hide lots of values in the advanced list před 23 roky
FindPNG.cmake 8cc45bd524 I copied a bit too much VXL functionality here. Oops před 23 roky
FindPerl.cmake c5feb8c6c5 Added PERL_FOUND před 23 roky
FindPythonLibs.cmake daaa5f3e79 Oops, forgot the library name před 24 roky
FindQt.cmake c5d31d32e2 Fix Bugs před 23 roky
FindSelfPackers.cmake cb4f04c94e Remove unneeded test and code duplication. Add WIN32 test. Make all ADVANCED. před 24 roky
FindTCL.cmake 67547494db FIX: fix commit messup (this change was committed to the branch instead of the main tree, thus was wiped-out later) před 24 roky
FindTIFF.cmake 0b288b6121 Fixed mistake in comments před 23 roky
FindTclsh.cmake 64a1707aee ENH: clean modules (doc, make stuff advanced, etc.) před 24 roky
FindUnixCommands.cmake cb4f04c94e Remove unneeded test and code duplication. Add WIN32 test. Make all ADVANCED. před 24 roky
FindVTK.cmake c7e18a0408 More finds for VTK před 24 roky
FindWget.cmake 5f60153d2f Add helpful message for QT Windows users před 23 roky
FindWish.cmake 74da9fb78e Add better detection of wish 8.2 před 24 roky
FindX11.cmake 079e8469ab Hide lots of values in the advanced list před 23 roky
FindZLIB.cmake f5ea46bbc5 This file should not be empty před 23 roky
FindwxWindows.cmake a75e78838f FIX: před 24 roky
LinkQT.cmake 63d64d5780 Define a single expected format for the values defined in every FindXXX.cmake file. před 23 roky
readme.txt 63d64d5780 Define a single expected format for the values defined in every FindXXX.cmake file. před 23 roky

readme.txt

Note to authors of FindXXX.cmake files

We would like all FindXXX.cmake files to produce consistent variable names.

XXX_INCLUDE_DIR, Where to find xxx.h, etc.
XXX_LIBRARIES, The libraries to link against to use XXX. These should include full paths.
XXX_DEFINITIONS, Definitions to use when compiling code that uses XXX.
XXX_EXECUTABLE, Where to find the XXX tool.
XXX_YYY_EXECUTABLE, Where to find the YYY tool that comes with XXX.
XXX_ROOT_DIR, Where to find the home directory of XXX.
XXX_FOUND, Set to false if we haven't found, or don't want to use XXX.


You do not have to provide all of the above variables. You should provide XXX_FOUND under most circumstances. If XXX is a library, then XXX_INCLUDE_DIR, XXX_LIBRARIES, and XXX_DEFINITIONS should also be defined.

Try to keep as many options as possible out of the cache, leaving at least one option which can be used to disable use of the module, or find a lost library (e.g. XXX_ROOT_DIR)

If you need other commands to do special things (e.g. the QT_WRAP_UI setting in FindQt.cmake) then it should still begin with XXX_. This gives a sort of namespace effect.