summaryrefslogtreecommitdiff
path: root/Source/cmFindCommon.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2008-06-09 15:08:59 -0400
committerBrad King <brad.king@kitware.com>2008-06-09 15:08:59 -0400
commit5b406c9044772ab56632edf6824759210c28f1c4 (patch)
treec66a888964f44ebf08b4ca9f55fafda44484e5b9 /Source/cmFindCommon.h
parent2cadc9138fc405fe49fb3f8cb4153b9c20c95df6 (diff)
downloadcmake-5b406c9044772ab56632edf6824759210c28f1c4.tar.gz
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/cmFindCommon.h')
-rw-r--r--Source/cmFindCommon.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmFindCommon.h b/Source/cmFindCommon.h
index a316b33876..fbb35a2494 100644
--- a/Source/cmFindCommon.h
+++ b/Source/cmFindCommon.h
@@ -58,7 +58,8 @@ protected:
bool CheckCommonArgument(std::string const& arg);
void AddPathSuffix(std::string const& arg);
- void AddUserPath(std::string const& p);
+ void AddUserPath(std::string const& p,
+ std::vector<std::string>& paths);
void AddCMakePath(const char* variable);
void AddEnvPath(const char* variable);
void AddPathsInternal(std::vector<std::string> const& in_paths,
@@ -73,6 +74,7 @@ protected:
std::vector<std::string> SearchPathSuffixes;
std::vector<std::string> UserPaths;
+ std::vector<std::string> UserHints;
std::vector<std::string> SearchPaths;
std::set<cmStdString> SearchPathsEmitted;