diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2005-12-27 20:33:47 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2005-12-27 20:33:47 (GMT) |
commit | 552842d11f845ad53e4f34be549aa4007737564b (patch) | |
tree | 6724d78898ba2ec28b587394df9e522919d0e8fa /Source/cmFindFileCommand.cxx | |
parent | 82bb6fae0d127b2ffcaae5eaa8a5365093cfac5c (diff) | |
download | CMake-552842d11f845ad53e4f34be549aa4007737564b.zip CMake-552842d11f845ad53e4f34be549aa4007737564b.tar.gz CMake-552842d11f845ad53e4f34be549aa4007737564b.tar.bz2 |
ENH: make sure -F is not duplicated
Diffstat (limited to 'Source/cmFindFileCommand.cxx')
-rw-r--r-- | Source/cmFindFileCommand.cxx | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/Source/cmFindFileCommand.cxx b/Source/cmFindFileCommand.cxx index 82c0ff4..b1972f2 100644 --- a/Source/cmFindFileCommand.cxx +++ b/Source/cmFindFileCommand.cxx @@ -70,6 +70,8 @@ bool cmFindFileCommand::InitialPass(std::vector<std::string> const& argsIn) cmSystemTools::GlobDirs(args[j].c_str(), path); } + cmSystemTools::GetPath(path, "CMAKE_LIBRARY_PATH"); + // add the standard path cmSystemTools::GetPath(path); for(unsigned int k=0; k < path.size(); k++) @@ -88,7 +90,7 @@ bool cmFindFileCommand::InitialPass(std::vector<std::string> const& argsIn) } } #if defined (__APPLE__) - cmStdString fpath = this->FindHeaderInFrameworks(args[0].c_str(), args[1].c_str()); + cmStdString fpath = this->FindHeaderInFrameworks(path, args[0].c_str(), args[1].c_str()); if(fpath.size()) { m_Makefile->AddCacheDefinition(args[0].c_str(), @@ -106,8 +108,10 @@ bool cmFindFileCommand::InitialPass(std::vector<std::string> const& argsIn) return true; } -cmStdString cmFindFileCommand::FindHeaderInFrameworks(const char* defineVar, - const char* file) +cmStdString cmFindFileCommand::FindHeaderInFrameworks( + std::vector<std::string> path, + const char* defineVar, + const char* file) { #ifndef __APPLE__ return cmStdString(""); @@ -130,12 +134,11 @@ cmStdString cmFindFileCommand::FindHeaderInFrameworks(const char* defineVar, frameWorkName = ""; } } - std::vector<cmStdString> path; path.push_back("~/Library/Frameworks"); path.push_back("/Library/Frameworks"); path.push_back("/System/Library/Frameworks"); path.push_back("/Network/Library/Frameworks"); - for( std::vector<cmStdString>::iterator i = path.begin(); + for( std::vector<std::string>::iterator i = path.begin(); i != path.end(); ++i) { if(frameWorkName.size()) |