diff options
author | Brad King <brad.king@kitware.com> | 2023-11-20 14:08:26 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2023-11-20 14:08:37 (GMT) |
commit | d9c8a3abdf11ae4e7dcaf4f957a9d43fb780bc07 (patch) | |
tree | f28327f2d8795b06b3ed037a5276b33a1969609d | |
parent | 079bf537fd869e5dc098f15dacfc999790ff6a13 (diff) | |
parent | fe0d03b044c8517d8b7a7457255fc835d4a5c503 (diff) | |
download | CMake-d9c8a3abdf11ae4e7dcaf4f957a9d43fb780bc07.zip CMake-d9c8a3abdf11ae4e7dcaf4f957a9d43fb780bc07.tar.gz CMake-d9c8a3abdf11ae4e7dcaf4f957a9d43fb780bc07.tar.bz2 |
Merge topic 'doc-CMP0149' into release-3.28
fe0d03b044 Help: Document that CMP0149 should be set before project()
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !8990
-rw-r--r-- | Help/policy/CMP0149.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Help/policy/CMP0149.rst b/Help/policy/CMP0149.rst index 714eeaf..a84149f 100644 --- a/Help/policy/CMP0149.rst +++ b/Help/policy/CMP0149.rst @@ -35,6 +35,13 @@ This policy provides compatibility for projects, toolchain files, and build scripts that have not been ported away from using :variable:`CMAKE_SYSTEM_VERSION` to specify an exact SDK version. +.. note:: + + This policy must be set before the first :command:`project` or + :command:`enable_language` command invocation at the top of the + project. That is when :ref:`Visual Studio Generators` select a + Windows SDK. + The ``OLD`` behavior for this policy is to use the exact value of :variable:`CMAKE_SYSTEM_VERSION` if possible. The ``NEW`` behavior for this policy is to ignore it. |