diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2007-03-30 14:53:02 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2007-03-30 14:53:02 (GMT) |
commit | 5ed2141d12c6be54902cb26a83d2b97fba8699cb (patch) | |
tree | 70ea60b1d750db15599f25188f2370ff11f0d558 /Source/cmMakefileTargetGenerator.cxx | |
parent | 32ab3853eee088f3da06cd49f67ade2b9947b4a4 (diff) | |
download | CMake-5ed2141d12c6be54902cb26a83d2b97fba8699cb.zip CMake-5ed2141d12c6be54902cb26a83d2b97fba8699cb.tar.gz CMake-5ed2141d12c6be54902cb26a83d2b97fba8699cb.tar.bz2 |
ENH: make sure default /System framework is not added with -F
Diffstat (limited to 'Source/cmMakefileTargetGenerator.cxx')
-rw-r--r-- | Source/cmMakefileTargetGenerator.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmMakefileTargetGenerator.cxx b/Source/cmMakefileTargetGenerator.cxx index 0a1b9c8..523a6f7 100644 --- a/Source/cmMakefileTargetGenerator.cxx +++ b/Source/cmMakefileTargetGenerator.cxx @@ -1116,6 +1116,7 @@ std::string cmMakefileTargetGenerator::GetFrameworkFlags() return std::string(); #else std::set<cmStdString> emitted; + emitted.insert("/System/Library/Frameworks"); std::vector<std::string> includes; this->LocalGenerator->GetIncludeDirectories(includes); std::vector<std::string>::iterator i; |