summaryrefslogtreecommitdiffstats
path: root/Source/cmFindPackageCommand.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2008-01-22 03:48:07 (GMT)
committerBrad King <brad.king@kitware.com>2008-01-22 03:48:07 (GMT)
commit480d733daf65ec1be7994199be8fd8a1abfc900a (patch)
tree9a66602456d5dc24de92255e1f2fc8656b6a7199 /Source/cmFindPackageCommand.cxx
parent2b48e716b39be50ed165526e689fe8fd1ef3a45c (diff)
downloadCMake-480d733daf65ec1be7994199be8fd8a1abfc900a.zip
CMake-480d733daf65ec1be7994199be8fd8a1abfc900a.tar.gz
CMake-480d733daf65ec1be7994199be8fd8a1abfc900a.tar.bz2
ENH: Updated find_package documentation to describe common usage first.
Diffstat (limited to 'Source/cmFindPackageCommand.cxx')
-rw-r--r--Source/cmFindPackageCommand.cxx58
1 files changed, 35 insertions, 23 deletions
diff --git a/Source/cmFindPackageCommand.cxx b/Source/cmFindPackageCommand.cxx
index 694f212..247282b 100644
--- a/Source/cmFindPackageCommand.cxx
+++ b/Source/cmFindPackageCommand.cxx
@@ -68,6 +68,38 @@ cmFindPackageCommand::cmFindPackageCommand()
this->VersionPatch = 0;
this->VersionCount = 0;
this->CommandDocumentation =
+ " find_package(<package> [major[.minor[.patch]]] [QUIET]\n"
+ " [[REQUIRED|COMPONENTS] [components...]])\n"
+ "Finds and loads settings from an external project. "
+ "<package>_FOUND will be set to indicate whether the package was found. "
+ "When the package is found package-specific information is provided "
+ "through variables documented by the package itself. "
+ "The QUIET option disables messages if the package cannot be found. "
+ "The REQUIRED option stops processing with an error message if the "
+ "package cannot be found. "
+ "A package-specific list of components may be listed after the "
+ "REQUIRED option or after the COMPONENTS option if no REQUIRED "
+ "option is given. "
+ "The \"[major[.minor[.patch]]]\" version argument specifies a desired "
+ "version with which the package found should be compatible. "
+ "Version support is currently provided only on a package-by-package "
+ "basis and is not enforced by the command.\n"
+ "User code should generally look for packages using the above simple "
+ "signature. The remainder of this command documentation specifies the "
+ "full command signature and details of the search process. Project "
+ "maintainers wishing to provide a package to be found by this command "
+ "are encouraged to read on.\n"
+ "The command has two modes by which it searches for packages: "
+ "\"Module\" mode and \"Config\" mode. "
+ "Module mode is available when the command is invoked with the above "
+ "reduced signature. "
+ "CMake searches for a file called \"Find<package>.cmake\" in "
+ "the CMAKE_MODULE_PATH followed by the CMake installation. "
+ "If the file is found, it is read and processed by CMake. "
+ "It is responsible for finding the package or producing an error message "
+ "if package content cannot be found. "
+ "Otherwise the command proceeds to Config mode.\n"
+ "The complete Config mode command signature is:\n"
" find_package(<package> [major[.minor[.patch]]] [QUIET] [NO_MODULE]\n"
" [[REQUIRED|COMPONENTS] [components...]]\n"
" [NAMES name1 [name2 ...]]\n"
@@ -83,29 +115,9 @@ cmFindPackageCommand::cmFindPackageCommand()
" [CMAKE_FIND_ROOT_PATH_BOTH |\n"
" ONLY_CMAKE_FIND_ROOT_PATH |\n"
" NO_CMAKE_FIND_ROOT_PATH])\n"
- "Finds and loads settings from an external project. <package>_FOUND "
- "will be set to indicate whether the package was found. Settings that "
- "can be used when <package>_FOUND is true are package-specific. "
- "A package-specific list of components may be listed after the "
- "REQUIRED option, or after the COMPONENTS option if no REQUIRED "
- "option is given. The \"[major[.minor[.patch]]]\" version argument "
- "specifies a desired version with which the package found should be "
- "compatible. Version support is currently provided only on a "
- "package-by-package basis and is not enforced by the command. "
- "The command has two modes by which it searches for packages: "
- "\"Module\" mode and \"Config\" mode."
- "\n"
- "Module mode has a reduced signature:\n"
- " find_package(<package> [major[.minor[.patch]]] [QUIET]\n"
- " [[REQUIRED|COMPONENTS] [components...]])\n"
- "CMake searches for a file called \"Find<package>.cmake\" in "
- "the CMAKE_MODULE_PATH followed by the CMake installation. "
- "If the file is found, it is read and processed by CMake. "
- "It is responsible for finding the package "
- "or producing an error message if package content cannot be found. "
- "Otherwise the command proceeds to Config mode. The NO_MODULE "
- "option may be used to skip Module mode explicitly, but the option "
- "is implied by use of options not specified in the reduced signature."
+ "The NO_MODULE option may be used to skip Module mode explicitly. "
+ "It is also implied by use of options not specified in the reduced "
+ "signature. "
"\n"
"Config mode attempts to locate a configuration file provided by the "
"package to be found. A cache entry called <package>_DIR is created to "