diff options
author | Brad King <brad.king@kitware.com> | 2024-10-03 13:18:14 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2024-10-03 18:18:16 (GMT) |
commit | 9e3b559b6a30b8b5734849fc21a9cea1b0e2874f (patch) | |
tree | edc4eca1f905ba8fffc073e5e68eac02cfc25e55 /Tests/Testing | |
parent | f4aa34daa724cf80dd407d14cd5a091b6e390c62 (diff) | |
download | CMake-9e3b559b6a30b8b5734849fc21a9cea1b0e2874f.zip CMake-9e3b559b6a30b8b5734849fc21a9cea1b0e2874f.tar.gz CMake-9e3b559b6a30b8b5734849fc21a9cea1b0e2874f.tar.bz2 |
Tests: Update cmake_minimum_required versions to 3.10
Diffstat (limited to 'Tests/Testing')
-rw-r--r-- | Tests/Testing/CMakeLists.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Tests/Testing/CMakeLists.txt b/Tests/Testing/CMakeLists.txt index 44afd4e..45ee858 100644 --- a/Tests/Testing/CMakeLists.txt +++ b/Tests/Testing/CMakeLists.txt @@ -1,7 +1,7 @@ # # Testing # -cmake_minimum_required (VERSION 2.7) +cmake_minimum_required(VERSION 3.10) project (Testing) include (CTest) @@ -30,7 +30,10 @@ endif () # Extra coverage # build_command(BUILD_COMMAND_VAR ${CMAKE_MAKE_PROGRAM}) +block(SCOPE_FOR POLICIES) +cmake_policy(VERSION 2.8.12) # old enough to not set CMP0036 build_name(BUILD_NAME_VAR) +endblock() site_name(SITE_NAME_VAR) # |