diff options
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r-- | Source/cmMakefile.cxx | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index 6cf4329..ae8c116 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -2215,6 +2215,11 @@ std::string cmMakefile::FindLibrary(const char* name, cmSystemTools::GetPath(path, "CMAKE_LIBRARY_PATH"); cmSystemTools::GetPath(path, "LIB"); cmSystemTools::GetPath(path); + bool supportFrameworks = false; + if(this->GetDefinition("APPLE")) + { + supportFrameworks = true; + } // now add the path path.insert(path.end(), userPaths.begin(), userPaths.end()); // Add some lib directories specific to compilers, depending on the @@ -2270,6 +2275,13 @@ std::string cmMakefile::FindLibrary(const char* name, path.push_back(lib_path); } } + else if(supportFrameworks) + { + path.push_back("~/Library/Frameworks"); + path.push_back("/Library/Frameworks"); + path.push_back("/System/Library/Frameworks"); + path.push_back("/Network/Library/Frameworks"); + } } if(m_LocalGenerator->GetGlobalGenerator()->GetLanguageEnabled("C")) { |