diff options
author | Benito Palacios Sanchez <benito@rti.com> | 2017-11-09 16:49:36 (GMT) |
---|---|---|
committer | Benito Palacios Sanchez <benito@rti.com> | 2017-11-09 16:49:36 (GMT) |
commit | 23dd8b9e93d670a6e19e8a0278611aa147ab87e8 (patch) | |
tree | 6a7247bb2467f26ec7637b67e645f1454acc4b6f /Source/cmGlobalXCodeGenerator.cxx | |
parent | 1e9304bccb933956f8c8349f2dd89927dd0ec08b (diff) | |
download | CMake-23dd8b9e93d670a6e19e8a0278611aa147ab87e8.zip CMake-23dd8b9e93d670a6e19e8a0278611aa147ab87e8.tar.gz CMake-23dd8b9e93d670a6e19e8a0278611aa147ab87e8.tar.bz2 |
cmGlobalXCodeGenerator: Support XCTest for XCode 6.4
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 a85a700..6e37f78 100644 --- a/Source/cmGlobalXCodeGenerator.cxx +++ b/Source/cmGlobalXCodeGenerator.cxx @@ -3298,9 +3298,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); |