1CMAKE_OSX_DEPLOYMENT_TARGET
2---------------------------
3
4Specify the minimum version of the target platform (e.g. macOS or iOS)
5on which the target binaries are to be deployed.  CMake uses this
6variable value for the ``-mmacosx-version-min`` flag or their respective
7target platform equivalents.  For older Xcode versions that shipped
8multiple macOS SDKs this variable also helps to choose the SDK in case
9:variable:`CMAKE_OSX_SYSROOT` is unset.
10
11If not set explicitly the value is initialized by the
12``MACOSX_DEPLOYMENT_TARGET`` environment variable, if set,
13and otherwise computed based on the host platform.
14
15.. include:: CMAKE_OSX_VARIABLE.txt
16