diff options
author | Brad King <brad.king@kitware.com> | 2023-03-01 20:55:47 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2023-03-01 21:36:54 (GMT) |
commit | f53bd6f45064fdf16c6c562edaf58bdcab8ee061 (patch) | |
tree | 3b8b15e26a4dc4c90f4bdbd321e5ac540e090667 /Tests/CTestTestFailure | |
parent | 7b37ebe8357d9b1e2a5c97b58c9f2f5b690d163e (diff) | |
download | CMake-f53bd6f45064fdf16c6c562edaf58bdcab8ee061.zip CMake-f53bd6f45064fdf16c6c562edaf58bdcab8ee061.tar.gz CMake-f53bd6f45064fdf16c6c562edaf58bdcab8ee061.tar.bz2 |
Tests: Bump CMake minimum required in tests to 3.5
CMake 3.27 deprecates compatibility with CMake < 3.5. Update tests that
do not cover older interfaces to avoid the deprecation warning.
Follow the pattern from:
* commit 7b07ccdd2b (Tests/*Only: Update cmake_minimum_required versions,
2020-06-15, v3.19.0-rc1~629^2~1)
* commit 72e7c45e98 (Tests: Bump CMake minimum required in tests to 2.8.12,
2020-12-22, v3.20.0-rc1~224^2)
* commit f6b4db365a (Tests: bump cmake_minimum_required version to 2.8.12,
2021-04-04, v3.21.0-rc1~372^2)
Also remove explicit `cmake_policy` settings made redundant by the
version.
Diffstat (limited to 'Tests/CTestTestFailure')
-rw-r--r-- | Tests/CTestTestFailure/CMakeLists.txt | 2 | ||||
-rw-r--r-- | Tests/CTestTestFailure/testNoBuild.cmake.in | 2 | ||||
-rw-r--r-- | Tests/CTestTestFailure/testNoExe.cmake.in | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/Tests/CTestTestFailure/CMakeLists.txt b/Tests/CTestTestFailure/CMakeLists.txt index db14b3d..b6c1e7a 100644 --- a/Tests/CTestTestFailure/CMakeLists.txt +++ b/Tests/CTestTestFailure/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 2.8.12) +cmake_minimum_required (VERSION 3.5) project(CTestTestFailure) include(CTest) diff --git a/Tests/CTestTestFailure/testNoBuild.cmake.in b/Tests/CTestTestFailure/testNoBuild.cmake.in index 47d254f..505916e 100644 --- a/Tests/CTestTestFailure/testNoBuild.cmake.in +++ b/Tests/CTestTestFailure/testNoBuild.cmake.in @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 2.8.12) +cmake_minimum_required(VERSION 3.5) # Settings: set(CTEST_DASHBOARD_ROOT "@CMake_BINARY_DIR@/Tests/CTestTest") diff --git a/Tests/CTestTestFailure/testNoExe.cmake.in b/Tests/CTestTestFailure/testNoExe.cmake.in index 8496c80..e3d7742 100644 --- a/Tests/CTestTestFailure/testNoExe.cmake.in +++ b/Tests/CTestTestFailure/testNoExe.cmake.in @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 2.8.12) +cmake_minimum_required(VERSION 3.5) # Settings: set(CTEST_DASHBOARD_ROOT "@CMake_BINARY_DIR@/Tests/CTestTest") |