summaryrefslogtreecommitdiffstats
path: root/Help/release/3.14.rst
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2019-04-19 11:40:14 (GMT)
committerBrad King <brad.king@kitware.com>2019-04-19 11:46:13 (GMT)
commitdb02be85a0bcccb633b31f087cde96d95fd21e8f (patch)
tree9814a9faa000bc83770dac6593a4b9fed890e3eb /Help/release/3.14.rst
parent5e98111643e22ad515afa2bf48a92573b6987115 (diff)
downloadCMake-db02be85a0bcccb633b31f087cde96d95fd21e8f.zip
CMake-db02be85a0bcccb633b31f087cde96d95fd21e8f.tar.gz
CMake-db02be85a0bcccb633b31f087cde96d95fd21e8f.tar.bz2
VS: Provide the default platform name to project code
The value of `CMAKE_VS_PLATFORM_NAME` is computed by Visual Studio generators based on `CMAKE_GENERATOR_PLATFORM` or some default. Prior to the VS 2019 generator, the default was always `Win32`. However, for the `Visual Studio 16 2019` generator, the default is based on the host platform. Store the default in a new `CMAKE_VS_PLATFORM_NAME_DEFAULT` variable for use by project code. This is particularly useful in toolchain files because they are allowed to set `CMAKE_GENERATOR_PLATFORM` and so `CMAKE_VS_PLATFORM_NAME` is not yet known. Of course the toolchain file author knows whether it will set `CMAKE_GENERATOR_PLATFORM`, and if not then `CMAKE_VS_PLATFORM_NAME_DEFAULT` provides the platform name that will be used. Fixes: #19177
Diffstat (limited to 'Help/release/3.14.rst')
-rw-r--r--Help/release/3.14.rst11
1 files changed, 11 insertions, 0 deletions
diff --git a/Help/release/3.14.rst b/Help/release/3.14.rst
index f2a91c6..c208304 100644
--- a/Help/release/3.14.rst
+++ b/Help/release/3.14.rst
@@ -137,6 +137,10 @@ Variables
relocatable and reproducible builds that are invariant of the build
directory.
+* A :variable:`CMAKE_VS_PLATFORM_NAME_DEFAULT` variable was added for
+ :ref:`Visual Studio Generators` to report their default platform used
+ when :variable:`CMAKE_GENERATOR_PLATFORM` is not set explicitly.
+
Properties
----------
@@ -391,3 +395,10 @@ Changes made since CMake 3.14.0 include the following.
our conventions. 3.14.1 revises the module to use ``Fontconfig_*``
variable names. This is incompatible with 3.14.0 but since the
module is new in the 3.14 series usage should not yet be widespread.
+
+3.14.3
+------
+
+* The :variable:`CMAKE_VS_PLATFORM_NAME_DEFAULT` variable was added
+ to help toolchain files work with the :generator:`Visual Studio 16 2019`
+ generator where the default platform now depends on the host platform.