diff options
author | Brad King <brad.king@kitware.com> | 2017-11-14 12:22:00 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2017-11-14 12:22:42 (GMT) |
commit | 8203895caa5d767e87760b22deea36fa2f5e99bf (patch) | |
tree | 804fe7cdbcccce74203fedab504e292728d465d6 /Source/cmGlobalXCodeGenerator.cxx | |
parent | 7a06f9973a349ad07d19c8794966a11047790b84 (diff) | |
parent | 23dd8b9e93d670a6e19e8a0278611aa147ab87e8 (diff) | |
download | CMake-8203895caa5d767e87760b22deea36fa2f5e99bf.zip CMake-8203895caa5d767e87760b22deea36fa2f5e99bf.tar.gz CMake-8203895caa5d767e87760b22deea36fa2f5e99bf.tar.bz2 |
Merge topic 'xcode64'
23dd8b9e cmGlobalXCodeGenerator: Support XCTest for XCode 6.4
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !1471
Diffstat (limited to 'Source/cmGlobalXCodeGenerator.cxx')
-rw-r--r-- | Source/cmGlobalXCodeGenerator.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx index 397a53c..dfc1bed 100644 --- a/Source/cmGlobalXCodeGenerator.cxx +++ b/Source/cmGlobalXCodeGenerator.cxx @@ -3242,9 +3242,9 @@ void cmGlobalXCodeGenerator::OutputXCodeProject( } this->WriteXCodePBXProj(fout, root, generators); - // Since the lowest available Xcode version for testing was 7.0, + // Since the lowest available Xcode version for testing was 6.4, // I'm setting this as a limit then - if (this->XcodeVersion >= 70) { + if (this->XcodeVersion >= 64) { if (root->GetMakefile()->GetCMakeInstance()->GetIsInTryCompile() || root->GetMakefile()->IsOn("CMAKE_XCODE_GENERATE_SCHEME")) { this->OutputXCodeSharedSchemes(xcodeDir); |