diff options
author | Brad King <brad.king@kitware.com> | 2006-01-27 23:20:55 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-01-27 23:20:55 (GMT) |
commit | 938890757aa721ec08909df4870304d5a9405337 (patch) | |
tree | f1120377ca512d92ffb1aad64e5bb59e0d5c699b /Source/cmFindPathCommand.h | |
parent | f4b306d5d449b8b5959c2d32898bd9fd23b893c6 (diff) | |
download | CMake-938890757aa721ec08909df4870304d5a9405337.zip CMake-938890757aa721ec08909df4870304d5a9405337.tar.gz CMake-938890757aa721ec08909df4870304d5a9405337.tar.bz2 |
ENH: Improved support for user-configured search paths. Paths given in the CMAKE_LIBRARY_PATH cmake variable are searched first, then those in the CMAKE_LIBRARY_PATH environment variable, then those listed in the call to the FIND_LIBRARY command and finally those listed in the PATH environment variable. The support is similar for finding include files with FIND_PATH, but the variable is CMAKE_INCLUDE_PATH.
Diffstat (limited to 'Source/cmFindPathCommand.h')
-rw-r--r-- | Source/cmFindPathCommand.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/Source/cmFindPathCommand.h b/Source/cmFindPathCommand.h index 17e431b..3c44221 100644 --- a/Source/cmFindPathCommand.h +++ b/Source/cmFindPathCommand.h @@ -70,13 +70,17 @@ public: return " FIND_PATH(<VAR> fileName path1 [path2 ...]\n" " [DOC \"docstring\"])\n" - "Find the directory containing a file named by fileName. Paths " - "are searched in the order specified. A cache entry named by " + "Find the directory containing a file named by fileName. " + "A cache entry named by " "<VAR> is created to store the result. If the file is not " "found, the result will be <VAR>-NOTFOUND. If DOC is specified " "then the next argument is treated as a documentation string for " - "the cache entry <VAR>. The environment variable CMAKE_INCLUDE_PATH " - "is searched as well as the PATH variable.\n"; + "the cache entry <VAR>. " + "The search proceeds first in paths listed in the CMAKE_INCLUDE_PATH " + "CMake variable (which is generally set by the user on the command line), " + "then in paths listed in the CMAKE_INCLUDE_PATH environment variable, " + "then in paths given to the command, and finally in paths listed in the " + "PATH environment variable."; } cmStdString FindHeaderInFrameworks( std::vector<std::string> path, const char* var, const char* file); |