diff options
author | Brad King <brad.king@kitware.com> | 2019-02-04 17:05:08 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-02-04 18:26:10 (GMT) |
commit | 96dece6dc11627d0e7b5588f63f2578b581cfb77 (patch) | |
tree | 8f7b85886b79e37a7f15c2e9e1406898080f36ea /Source/cmGlobalXCodeGenerator.cxx | |
parent | 6e91f5d6204e650c808b6585074faa248ee6e6a9 (diff) | |
download | CMake-96dece6dc11627d0e7b5588f63f2578b581cfb77.zip CMake-96dece6dc11627d0e7b5588f63f2578b581cfb77.tar.gz CMake-96dece6dc11627d0e7b5588f63f2578b581cfb77.tar.bz2 |
Xcode: Update default Swift language version for Xcode 10.2
Xcode 10.2 no longer supports Swift language versions before 4.0.
Fixes: #18871
Diffstat (limited to 'Source/cmGlobalXCodeGenerator.cxx')
-rw-r--r-- | Source/cmGlobalXCodeGenerator.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx index b428ae1..16f8a0e 100644 --- a/Source/cmGlobalXCodeGenerator.cxx +++ b/Source/cmGlobalXCodeGenerator.cxx @@ -3142,6 +3142,8 @@ bool cmGlobalXCodeGenerator::CreateXCodeObjects( if (const char* vers = this->CurrentMakefile->GetDefinition( "CMAKE_Swift_LANGUAGE_VERSION")) { swiftVersion = vers; + } else if (this->XcodeVersion >= 102) { + swiftVersion = "4.0"; } else if (this->XcodeVersion >= 83) { swiftVersion = "3.0"; } else { |