diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2006-12-28 20:31:47 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2006-12-28 20:31:47 (GMT) |
commit | 255a4b966e0717ef61f1a6e364b141fccd0f1fb8 (patch) | |
tree | fbaf85b647ae4da71d23531fdfb0e26461471e0a /Source/cmFindBase.h | |
parent | f6c29729564d269b8e9c7d34f68564a282241ca3 (diff) | |
download | CMake-255a4b966e0717ef61f1a6e364b141fccd0f1fb8.zip CMake-255a4b966e0717ef61f1a6e364b141fccd0f1fb8.tar.gz CMake-255a4b966e0717ef61f1a6e364b141fccd0f1fb8.tar.bz2 |
BUG: fix problem with path suffix and mac frameworks and find stuff, showed up in FindPythonLibs.cmake
Diffstat (limited to 'Source/cmFindBase.h')
-rw-r--r-- | Source/cmFindBase.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmFindBase.h b/Source/cmFindBase.h index e7084a4..e9fae38 100644 --- a/Source/cmFindBase.h +++ b/Source/cmFindBase.h @@ -42,13 +42,15 @@ public: protected: void PrintFindStuff(); void ExpandPaths(std::vector<std::string> userPaths); + // add to the SearchPaths + void AddPaths(std::vector<std::string>& paths); void AddFrameWorkPaths(); void AddAppBundlePaths(); void AddEnvironmentVairables(); void AddCMakeVairables(); void AddSystemEnvironmentVairables(); void AddCMakeSystemVariables(); - void ExpandRegistryAndCleanPath(); + void ExpandRegistryAndCleanPath(std::vector<std::string>& paths); // see if the VariableName is already set in the cache, // also copy the documentation from the cache to VariableDocumentation // if it has documentation in the cache |