diff options
author | Brad King <brad.king@kitware.com> | 2010-02-18 17:05:51 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2010-02-18 17:05:51 (GMT) |
commit | 282ba895584c4e8540a773030f9b84efcfe6fdeb (patch) | |
tree | 71640a166b11d9b926a1c9dbe0aaa18721efa7a7 /Source/cmDocumentVariables.cxx | |
parent | 19c42fb582c29eba6fb108c7b3796a700c363fcd (diff) | |
download | CMake-282ba895584c4e8540a773030f9b84efcfe6fdeb.zip CMake-282ba895584c4e8540a773030f9b84efcfe6fdeb.tar.gz CMake-282ba895584c4e8540a773030f9b84efcfe6fdeb.tar.bz2 |
Clarify CMAKE_MODULE_PATH documentation
Reword the documentation to make it clear that the variable can be a
list of directories.
Diffstat (limited to 'Source/cmDocumentVariables.cxx')
-rw-r--r-- | Source/cmDocumentVariables.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmDocumentVariables.cxx b/Source/cmDocumentVariables.cxx index 091d688..c6f9ba5 100644 --- a/Source/cmDocumentVariables.cxx +++ b/Source/cmDocumentVariables.cxx @@ -515,10 +515,10 @@ void cmDocumentVariables::DefineVariables(cmake* cm) cm->DefineProperty ("CMAKE_MODULE_PATH", cmProperty::VARIABLE, - "Path to look for cmake modules to load.", - "Specifies a path to override the default search path for " - "CMake modules. For example include commands will look " - "in this path first for modules to include.", + "List of directories to search for CMake modules.", + "Commands like include() and find_package() search for files in " + "directories listed by this variable before checking the default " + "modules that come with CMake.", false, "Variables That Change Behavior"); |