diff options
author | Brad King <brad.king@kitware.com> | 2024-07-08 15:12:24 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2024-07-08 15:13:09 (GMT) |
commit | 639346f319089f1f3a39dc59f25c11ef8cf90eaa (patch) | |
tree | 8e5e10f49a519e41ebc8dd92e6f593061ceade18 /Help/manual | |
parent | d3088a8eea3607c1d67925ad0f4a29b634638cf7 (diff) | |
parent | 2785364b7ba32de1f718e9e5fd049a039414a669 (diff) | |
download | CMake-639346f319089f1f3a39dc59f25c11ef8cf90eaa.zip CMake-639346f319089f1f3a39dc59f25c11ef8cf90eaa.tar.gz CMake-639346f319089f1f3a39dc59f25c11ef8cf90eaa.tar.bz2 |
Merge topic 'ios-mac-catalyst'
2785364b7b iOS: Add support for Mac Catalyst
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !9595
Diffstat (limited to 'Help/manual')
-rw-r--r-- | Help/manual/cmake-toolchains.7.rst | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Help/manual/cmake-toolchains.7.rst b/Help/manual/cmake-toolchains.7.rst index 1ebdf85..c872143 100644 --- a/Help/manual/cmake-toolchains.7.rst +++ b/Help/manual/cmake-toolchains.7.rst @@ -591,14 +591,14 @@ a different SDK (e.g. a simulator) can be selected by setting the necessary (see :ref:`Switching Between Device and Simulator` below). A list of available SDKs can be obtained by running ``xcodebuild -showsdks``. -======== ================= ==================== ================ -OS CMAKE_SYSTEM_NAME Device SDK (default) Simulator SDK -======== ================= ==================== ================ -iOS iOS iphoneos iphonesimulator -tvOS tvOS appletvos appletvsimulator -visionOS visionOS xros xrsimulator -watchOS watchOS watchos watchsimulator -======== ================= ==================== ================ +======== ================= ==================== ================ ============ +OS CMAKE_SYSTEM_NAME Device SDK (default) Simulator SDK Catalyst SDK +======== ================= ==================== ================ ============ +iOS iOS iphoneos iphonesimulator macosx +tvOS tvOS appletvos appletvsimulator N/A +visionOS visionOS xros xrsimulator N/A +watchOS watchOS watchos watchsimulator N/A +======== ================= ==================== ================ ============ For example, to create a CMake configuration for iOS, the following command is sufficient: |