diff options
author | Brad King <brad.king@kitware.com> | 2016-09-23 17:25:35 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-09-26 12:46:23 (GMT) |
commit | b35568f3f9f9b8f4b5b2a2e6f4d524540980c3ae (patch) | |
tree | 1fc4af01e44a75c99cf8da434e5fe58b7fcd07ff /Tests/SwiftOnly | |
parent | 49d50ad40719722236c7867bd69e7ab414224c49 (diff) | |
download | CMake-b35568f3f9f9b8f4b5b2a2e6f4d524540980c3ae.zip CMake-b35568f3f9f9b8f4b5b2a2e6f4d524540980c3ae.tar.gz CMake-b35568f3f9f9b8f4b5b2a2e6f4d524540980c3ae.tar.bz2 |
Xcode: Add option to set Swift language version
Create a new CMAKE_Swift_LANGUAGE_VERSION variable to specify the
SWIFT_VERSION attribute in a generated Xcode project. Ideally this
would be a `<LANG>_STANDARD` property but since Swift support is
very minimal we should reserve that property for more complete
treatment later.
Issue: #16326
Diffstat (limited to 'Tests/SwiftOnly')
-rw-r--r-- | Tests/SwiftOnly/CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Tests/SwiftOnly/CMakeLists.txt b/Tests/SwiftOnly/CMakeLists.txt index 5cb9739..cf4463c 100644 --- a/Tests/SwiftOnly/CMakeLists.txt +++ b/Tests/SwiftOnly/CMakeLists.txt @@ -1,4 +1,8 @@ cmake_minimum_required(VERSION 3.3) project(SwiftOnly Swift) +if(NOT XCODE_VERSION VERSION_LESS 8.0) + set(CMAKE_Swift_LANGUAGE_VERSION 3.0) +endif() + add_executable(SwiftOnly main.swift) |