diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2005-12-14 18:51:08 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2005-12-14 18:51:08 (GMT) |
commit | b7fa820118d6989ca4d77dbfcc972c2e903bfe2a (patch) | |
tree | a5605c468a458597fff5f17485fad8cd85856e1b /Modules/FindITK.cmake | |
parent | 805d365d479a916acf2c5638809fb046fc28dc97 (diff) | |
download | CMake-b7fa820118d6989ca4d77dbfcc972c2e903bfe2a.zip CMake-b7fa820118d6989ca4d77dbfcc972c2e903bfe2a.tar.gz CMake-b7fa820118d6989ca4d77dbfcc972c2e903bfe2a.tar.bz2 |
ENH: add documentation support for modules
Diffstat (limited to 'Modules/FindITK.cmake')
-rw-r--r-- | Modules/FindITK.cmake | 32 |
1 files changed, 15 insertions, 17 deletions
diff --git a/Modules/FindITK.cmake b/Modules/FindITK.cmake index 40c321b..2612bd6 100644 --- a/Modules/FindITK.cmake +++ b/Modules/FindITK.cmake @@ -1,27 +1,25 @@ -# -# Find an ITK installation or build tree. -# +# - Find an ITK installation or build tree. # When ITK is found, the ITKConfig.cmake file is sourced to setup the # location and configuration of ITK. Please read this file, or # ITKConfig.cmake.in from the ITK source tree for the full list of # definitions. Of particular interest is -# -# ITK_USE_FILE - A CMake source file that can be included -# to set the include directories, library -# directories, and preprocessor macros. -# +# +# ITK_USE_FILE - A CMake source file that can be included +# to set the include directories, library +# directories, and preprocessor macros. # In addition to the variables read from ITKConfig.cmake, this find # module also defines +# ITK_DIR - The directory containing ITKConfig.cmake. This is +# either the root of the build tree, or the +# lib/InsightToolkit directory. This is the only +# cache entry. +# +# ITK_FOUND - Whether ITK was found. If this is true, ITK_DIR is okay. # -# ITK_DIR - The directory containing ITKConfig.cmake. This is either -# the root of the build tree, or the lib/InsightToolkit -# directory. This is the only cache entry. -# -# ITK_FOUND - Whether ITK was found. If this is true, ITK_DIR is okay. -# -# USE_ITK_FILE - The full path to the UseITK.cmake file. This is provided -# for backward compatability. Use ITK_USE_FILE instead. -# +# USE_ITK_FILE - The full path to the UseITK.cmake file. +# This is provided for backward compatability. +# Use ITK_USE_FILE instead. + SET(ITK_DIR_STRING "directory containing ITKConfig.cmake. This is either the root of the build tree, or PREFIX/lib/InsightToolkit for an installation.") |