Clarify CMAKE_MODULE_PATH documentation

Reword the documentation to make it clear that the variable can be a
list of directories.
This commit is contained in:
Brad King 2010-02-18 12:05:51 -05:00
parent 19c42fb582
commit 282ba89558
1 changed files with 4 additions and 4 deletions

View File

@ -515,10 +515,10 @@ void cmDocumentVariables::DefineVariables(cmake* cm)
cm->DefineProperty cm->DefineProperty
("CMAKE_MODULE_PATH", cmProperty::VARIABLE, ("CMAKE_MODULE_PATH", cmProperty::VARIABLE,
"Path to look for cmake modules to load.", "List of directories to search for CMake modules.",
"Specifies a path to override the default search path for " "Commands like include() and find_package() search for files in "
"CMake modules. For example include commands will look " "directories listed by this variable before checking the default "
"in this path first for modules to include.", "modules that come with CMake.",
false, false,
"Variables That Change Behavior"); "Variables That Change Behavior");