Ian Scott 5f60153d2f Add helpful message for QT Windows users 23 yıl önce
..
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. 24 yıl önce
Dart.cmake 589cf38a36 fixed another bug 23 yıl önce
Documentation.cmake 1362bb41c8 Add module to find gnuplot 24 yıl önce
FindAVIFile.cmake 63d64d5780 Define a single expected format for the values defined in every FindXXX.cmake file. 23 yıl önce
FindCABLE.cmake 64a1707aee ENH: clean modules (doc, make stuff advanced, etc.) 23 yıl önce
FindCurses.cmake 0d252c941d ENH: Added /lib to curses search path. 24 yıl önce
FindCygwin.cmake cb4f04c94e Remove unneeded test and code duplication. Add WIN32 test. Make all ADVANCED. 24 yıl önce
FindDart.cmake e2294ae591 ENH: look for Dart in c: 24 yıl önce
FindDoxygen.cmake cb4f04c94e Remove unneeded test and code duplication. Add WIN32 test. Make all ADVANCED. 24 yıl önce
FindFLTK.cmake f035d0c0c5 ENH: Platform dependent libraries added. 23 yıl önce
FindGCCXML.cmake 11d50284ed ENH: Updated for version 0.2 of GCC-XML. 24 yıl önce
FindGLU.cmake c8ed9d7452 ERR: remove automatic Carbon framework on osx 23 yıl önce
FindGLUT.cmake 84cd5ec124 ENH: add more paths for the HP 23 yıl önce
FindGTK.cmake f07ee5b817 ENH: change find library and find program to look for more than one name 25 yıl önce
FindGnuplot.cmake 1362bb41c8 Add module to find gnuplot 24 yıl önce
FindHhc.cmake cb4f04c94e Remove unneeded test and code duplication. Add WIN32 test. Make all ADVANCED. 24 yıl önce
FindITK.cmake 0fb47ad240 *** empty log message *** 24 yıl önce
FindJNI.cmake 6bdf15c4de ENH: Added /usr/local/lib/java search paths. 23 yıl önce
FindJPEG.cmake 5f60153d2f Add helpful message for QT Windows users 23 yıl önce
FindJava.cmake ab4e894b92 Add module that finds java executables. This module should find java, javac, and jar. 23 yıl önce
FindMPI.cmake 555a7f88aa Add mpi search paths for Debian 24 yıl önce
FindOpenGL.cmake c8ed9d7452 ERR: remove automatic Carbon framework on osx 23 yıl önce
FindPerl.cmake cb4f04c94e Remove unneeded test and code duplication. Add WIN32 test. Make all ADVANCED. 24 yıl önce
FindPythonLibs.cmake daaa5f3e79 Oops, forgot the library name 23 yıl önce
FindQt.cmake 5f60153d2f Add helpful message for QT Windows users 23 yıl önce
FindSelfPackers.cmake cb4f04c94e Remove unneeded test and code duplication. Add WIN32 test. Make all ADVANCED. 24 yıl önce
FindTCL.cmake 67547494db FIX: fix commit messup (this change was committed to the branch instead of the main tree, thus was wiped-out later) 23 yıl önce
FindTclsh.cmake 64a1707aee ENH: clean modules (doc, make stuff advanced, etc.) 23 yıl önce
FindUnixCommands.cmake cb4f04c94e Remove unneeded test and code duplication. Add WIN32 test. Make all ADVANCED. 24 yıl önce
FindVTK.cmake c7e18a0408 More finds for VTK 24 yıl önce
FindWget.cmake 5f60153d2f Add helpful message for QT Windows users 23 yıl önce
FindWish.cmake 74da9fb78e Add better detection of wish 8.2 24 yıl önce
FindX11.cmake 64a1707aee ENH: clean modules (doc, make stuff advanced, etc.) 23 yıl önce
FindZLib.cmake 5f60153d2f Add helpful message for QT Windows users 23 yıl önce
FindwxWindows.cmake a75e78838f FIX: 23 yıl önce
LinkQT.cmake 63d64d5780 Define a single expected format for the values defined in every FindXXX.cmake file. 23 yıl önce
readme.txt 63d64d5780 Define a single expected format for the values defined in every FindXXX.cmake file. 23 yıl önce

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.