diff options
author | David Cole <david.cole@kitware.com> | 2011-08-25 19:40:21 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2011-08-25 19:40:21 (GMT) |
commit | 50b64fb0121d8f0ce5302486276c4a3b604e42b1 (patch) | |
tree | 2f6612096c4f2ab62189dedb6f695a0c9c48b421 /Source | |
parent | 68b3795140169d19962e2651a80e9b7929aedb44 (diff) | |
parent | bda4148a571d969700e018d89a95547908075bec (diff) | |
download | CMake-50b64fb0121d8f0ce5302486276c4a3b604e42b1.zip CMake-50b64fb0121d8f0ce5302486276c4a3b604e42b1.tar.gz CMake-50b64fb0121d8f0ce5302486276c4a3b604e42b1.tar.bz2 |
Merge topic 'xcode4-remove-PREBINDING'
bda4148 Xcode: Remove PREBINDING attribute for Xcode 4 and above
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmGlobalXCodeGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx index fd9dacd..73967912 100644 --- a/Source/cmGlobalXCodeGenerator.cxx +++ b/Source/cmGlobalXCodeGenerator.cxx @@ -1758,7 +1758,7 @@ void cmGlobalXCodeGenerator::CreateBuildSettings(cmTarget& target, default: break; } - if(this->XcodeVersion >= 22) + if(this->XcodeVersion >= 22 && this->XcodeVersion < 40) { buildSettings->AddAttribute("PREBINDING", this->CreateString("NO")); |