mirror of
https://github.com/Kitware/CMake.git
synced 2025-10-14 02:08:27 +08:00

Since commit 83ddc4d289
(VS: Do not select a Windows SDK too high for
current VS version, 2017-08-07, v3.13.0-rc1~72^2~2) we enforce a maximum
SDK version for the VS 2015 generator. The blog post linked in the
original commit is no longer available, but it can be seen here:
* https://web.archive.org/web/20190108032520/https://blogs.msdn.microsoft.com/chuckw/2018/10/02/windows-10-october-2018-update/
In particular, it states:
> VS 2015 Users: The Windows 10 SDK (15063, 16299, 17134, 17763)
> is officially only supported for VS 2017.
However, in some circumstances a higher version can be used.
Add a `CMAKE_VS_WINDOWS_TARGET_PLATFORM_VERSION_MAXIMUM` to override the
generator's default maximum SDK version.
Fixes: #20633
22 lines
936 B
ReStructuredText
22 lines
936 B
ReStructuredText
CMAKE_VS_WINDOWS_TARGET_PLATFORM_VERSION
|
|
----------------------------------------
|
|
|
|
.. versionadded:: 3.4
|
|
|
|
Visual Studio Windows Target Platform Version.
|
|
|
|
When targeting Windows 10 and above Visual Studio 2015 and above support
|
|
specification of a target Windows version to select a corresponding SDK.
|
|
The :variable:`CMAKE_SYSTEM_VERSION` variable may be set to specify a
|
|
version. Otherwise CMake computes a default version based on the Windows
|
|
SDK versions available. The chosen Windows target version number is provided
|
|
in ``CMAKE_VS_WINDOWS_TARGET_PLATFORM_VERSION``. If no Windows 10 SDK
|
|
is available this value will be empty.
|
|
|
|
One may set a ``CMAKE_WINDOWS_KITS_10_DIR`` *environment variable*
|
|
to an absolute path to tell CMake to look for Windows 10 SDKs in
|
|
a custom location. The specified directory is expected to contain
|
|
``Include/10.0.*`` directories.
|
|
|
|
See also :variable:`CMAKE_VS_WINDOWS_TARGET_PLATFORM_VERSION_MAXIMUM`.
|