diff options
author | Brad King <brad.king@kitware.com> | 2008-06-09 19:08:59 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2008-06-09 19:08:59 (GMT) |
commit | 5b406c9044772ab56632edf6824759210c28f1c4 (patch) | |
tree | c66a888964f44ebf08b4ca9f55fafda44484e5b9 /Source/cmFindBase.h | |
parent | 2cadc9138fc405fe49fb3f8cb4153b9c20c95df6 (diff) | |
download | CMake-5b406c9044772ab56632edf6824759210c28f1c4.zip CMake-5b406c9044772ab56632edf6824759210c28f1c4.tar.gz CMake-5b406c9044772ab56632edf6824759210c28f1c4.tar.bz2 |
ENH: Add HINTS option to find_* commands.
- Hints are searched after user locations but before system locations
- The HINTS option should have paths provided by system introspection
- The PATHS option should have paths that are hard-coded guesses
Diffstat (limited to 'Source/cmFindBase.h')
-rw-r--r-- | Source/cmFindBase.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmFindBase.h b/Source/cmFindBase.h index 7392c23..52d49d8 100644 --- a/Source/cmFindBase.h +++ b/Source/cmFindBase.h @@ -66,6 +66,8 @@ private: void AddCMakeVariablePath(); void AddSystemEnvironmentPath(); void AddCMakeSystemVariablePath(); + void AddUserHintsPath(); + void AddUserGuessPath(); // Helpers. void AddCMakePrefixPath(const char* variable); |