diff options
author | Craig Scott <craig.scott@crascit.com> | 2023-12-30 07:38:05 (GMT) |
---|---|---|
committer | Craig Scott <craig.scott@crascit.com> | 2023-12-30 07:38:05 (GMT) |
commit | 315cf740253215ea958a7fb2792f2bcb05d49fd4 (patch) | |
tree | 807c368599041971e5aefbcded45b7ff84d0251d /Help/manual | |
parent | af2e4379fcf1d957eb6adcc4725990e4efd02e1c (diff) | |
download | CMake-315cf740253215ea958a7fb2792f2bcb05d49fd4.zip CMake-315cf740253215ea958a7fb2792f2bcb05d49fd4.tar.gz CMake-315cf740253215ea958a7fb2792f2bcb05d49fd4.tar.bz2 |
Help: Note CMAKE_IOS_INSTALL_COMBINED deprecation in toolchains example
Diffstat (limited to 'Help/manual')
-rw-r--r-- | Help/manual/cmake-toolchains.7.rst | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Help/manual/cmake-toolchains.7.rst b/Help/manual/cmake-toolchains.7.rst index 7ecb6da..1ebdf85 100644 --- a/Help/manual/cmake-toolchains.7.rst +++ b/Help/manual/cmake-toolchains.7.rst @@ -611,9 +611,11 @@ Variable :variable:`CMAKE_OSX_ARCHITECTURES` can be used to set architectures for both device and simulator. Variable :variable:`CMAKE_OSX_DEPLOYMENT_TARGET` can be used to set an iOS/tvOS/visionOS/watchOS deployment target. -Next configuration will install fat 5 architectures iOS library -and add the ``-miphoneos-version-min=9.3``/``-mios-simulator-version-min=9.3`` -flags to the compiler: +The next example installs five architectures in a universal binary for an iOS +library. It adds the relevant ``-miphoneos-version-min=9.3`` or +``-mios-simulator-version-min=9.3`` compiler flag where appropriate. +Note that the :variable:`CMAKE_IOS_INSTALL_COMBINED` variable used in the +example is now deprecated, so this approach is no longer recommended. .. code-block:: console |