diff options
author | Brad King <brad.king@kitware.com> | 2020-09-14 19:02:47 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2020-09-18 17:02:14 (GMT) |
commit | 8d5f4c4db93959f77dc8fb185e4630df4ec26d98 (patch) | |
tree | d71f3fd9552500ecb52217bff53f4a7b37d6e18c /Help/variable/CMAKE_XCODE_BUILD_SYSTEM.rst | |
parent | 2db623f554d5522350214a7c5bacd5ec2dec1b34 (diff) | |
download | CMake-8d5f4c4db93959f77dc8fb185e4630df4ec26d98.zip CMake-8d5f4c4db93959f77dc8fb185e4630df4ec26d98.tar.gz CMake-8d5f4c4db93959f77dc8fb185e4630df4ec26d98.tar.bz2 |
Xcode: Switch to the "new build system" for Xcode 12 and above
Provide an option to switch back to the original build system via
`-T buildsystem=1`.
Fixes: #18088
Diffstat (limited to 'Help/variable/CMAKE_XCODE_BUILD_SYSTEM.rst')
-rw-r--r-- | Help/variable/CMAKE_XCODE_BUILD_SYSTEM.rst | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Help/variable/CMAKE_XCODE_BUILD_SYSTEM.rst b/Help/variable/CMAKE_XCODE_BUILD_SYSTEM.rst index 8696bbf..587a5c9 100644 --- a/Help/variable/CMAKE_XCODE_BUILD_SYSTEM.rst +++ b/Help/variable/CMAKE_XCODE_BUILD_SYSTEM.rst @@ -10,7 +10,12 @@ mature enough for use by CMake. The possible values are: ``1`` The original Xcode build system. - This is the default. + This is the default when using Xcode 11.x or below. + +``12`` + The Xcode "new build system" introduced by Xcode 10. + It became mature enough for use by CMake in Xcode 12. + This is the default when using Xcode 12.x or above. The ``CMAKE_XCODE_BUILD_SYSTEM`` variable is informational and should not be modified by project code. See the :ref:`Xcode Build System Selection` |