diff options
author | Brad King <brad.king@kitware.com> | 2016-09-23 15:43:08 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-09-23 15:47:06 (GMT) |
commit | 49d50ad40719722236c7867bd69e7ab414224c49 (patch) | |
tree | 8b92952a2de01ce221b9a383a6c3881da295927a /Modules/CMakeDetermineCompilerId.cmake | |
parent | 6757e6608992354300d635a96fed29800a4856c3 (diff) | |
download | CMake-49d50ad40719722236c7867bd69e7ab414224c49.zip CMake-49d50ad40719722236c7867bd69e7ab414224c49.tar.gz CMake-49d50ad40719722236c7867bd69e7ab414224c49.tar.bz2 |
Xcode: Port rudimentary Swift support to Xcode 8
The `.pbxproj` file must now specify a `SWIFT_VERSION` value.
Set it to the legacy value of "2.3" for now. Later this can
be made configurable (e.g. to "3.0").
Diffstat (limited to 'Modules/CMakeDetermineCompilerId.cmake')
-rw-r--r-- | Modules/CMakeDetermineCompilerId.cmake | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Modules/CMakeDetermineCompilerId.cmake b/Modules/CMakeDetermineCompilerId.cmake index 64d9bed..3d1ca6d 100644 --- a/Modules/CMakeDetermineCompilerId.cmake +++ b/Modules/CMakeDetermineCompilerId.cmake @@ -266,6 +266,11 @@ Id flags: ${testflags} else() set(id_toolset "") endif() + if("${lang}" STREQUAL "Swift") + set(id_lang_version "SWIFT_VERSION = 2.3;") + else() + set(id_lang_version "") + endif() if(CMAKE_OSX_DEPLOYMENT_TARGET) set(id_deployment_target "MACOSX_DEPLOYMENT_TARGET = \"${CMAKE_OSX_DEPLOYMENT_TARGET}\";") |