diff options
author | Robert Maynard <rmaynard@nvidia.com> | 2024-01-05 21:42:05 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2024-01-05 22:01:01 (GMT) |
commit | 63e20653f8f31fe4b25e909b25adad85cacaf26b (patch) | |
tree | bfa613b1778bd2b3396fb4e6014a39a538c21d56 | |
parent | 601e16c7c5146fa6bbd92ec28ed792782cdf1033 (diff) | |
download | CMake-63e20653f8f31fe4b25e909b25adad85cacaf26b.zip CMake-63e20653f8f31fe4b25e909b25adad85cacaf26b.tar.gz CMake-63e20653f8f31fe4b25e909b25adad85cacaf26b.tar.bz2 |
add_test: Fix version of CMake introducing CMP0158 (to 3.29)
This was missed in commit ca5a300d7f (add_test: Honor
CROSSCOMPILING_EMULATOR only when cross-compiling, 2023-11-02) when it
slipped from the 3.28 release.
-rw-r--r-- | Help/policy/CMP0158.rst | 2 | ||||
-rw-r--r-- | Source/cmPolicies.h | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/Help/policy/CMP0158.rst b/Help/policy/CMP0158.rst index 4289c6d..369b5ec 100644 --- a/Help/policy/CMP0158.rst +++ b/Help/policy/CMP0158.rst @@ -25,3 +25,5 @@ This policy was introduced in CMake version 3.29. Use the :command:`cmake_policy` command to set it to ``OLD`` or ``NEW`` explicitly. Unlike many policies, CMake version |release| does *not* warn when this policy is not set and simply uses ``OLD`` behavior. + +.. include:: DEPRECATED.txt diff --git a/Source/cmPolicies.h b/Source/cmPolicies.h index f038c6b..3f20dc0 100644 --- a/Source/cmPolicies.h +++ b/Source/cmPolicies.h @@ -484,7 +484,7 @@ class cmMakefile; SELECT(POLICY, CMP0158, \ "add_test() honors CMAKE_CROSSCOMPILING_EMULATOR only when " \ "cross-compiling.", \ - 3, 28, 0, cmPolicies::WARN) + 3, 29, 0, cmPolicies::WARN) #define CM_SELECT_ID(F, A1, A2, A3, A4, A5, A6) F(A1) #define CM_FOR_EACH_POLICY_ID(POLICY) \ |