diff options
author | Brad King <brad.king@kitware.com> | 2018-09-28 15:13:52 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2018-09-28 15:13:59 (GMT) |
commit | 4e98203c6c318f7c2caf4c31b2c2863772eef57b (patch) | |
tree | c41a3178a031cc2fa982c32157766149201bcde2 /Help/variable | |
parent | 8fea6b0764dbf1b6893e7ca81d93cddca2facfce (diff) | |
parent | 36489b85aa308e3a1b984da0d1e7d3aff4467752 (diff) | |
download | CMake-4e98203c6c318f7c2caf4c31b2c2863772eef57b.zip CMake-4e98203c6c318f7c2caf4c31b2c2863772eef57b.tar.gz CMake-4e98203c6c318f7c2caf4c31b2c2863772eef57b.tar.bz2 |
Merge topic 'vs-global-props-for-all-targets'
36489b85aa VS: Add test for CMAKE_VS_GLOBALS
22e670a306 VS: Add option to set VS_GLOBAL_* for all targets
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !2345
Diffstat (limited to 'Help/variable')
-rw-r--r-- | Help/variable/CMAKE_VS_GLOBALS.rst | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Help/variable/CMAKE_VS_GLOBALS.rst b/Help/variable/CMAKE_VS_GLOBALS.rst new file mode 100644 index 0000000..83777b6 --- /dev/null +++ b/Help/variable/CMAKE_VS_GLOBALS.rst @@ -0,0 +1,21 @@ +CMAKE_VS_GLOBALS +---------------- + +List of ``Key=Value`` records to be set per target as target properties +:prop_tgt:`VS_GLOBAL_<variable>` with ``variable=Key`` and value ``Value``. + +For example: + +.. code-block:: cmake + + set(CMAKE_VS_GLOBALS + "DefaultLanguage=en-US" + "MinimumVisualStudioVersion=14.0" + ) + +will set properties ``VS_GLOBAL_DefaultLanguage`` to ``en-US`` and +``VS_GLOBAL_MinimumVisualStudioVersion`` to ``14.0`` for all targets +(except for ``INTERFACE`` libraries). + +This variable is meant to be set by a +:variable:`toolchain file <CMAKE_TOOLCHAIN_FILE>`. |