diff options
author | Chuck Atkins <chuck.atkins@kitware.com> | 2020-12-22 14:47:04 (GMT) |
---|---|---|
committer | Chuck Atkins <chuck.atkins@kitware.com> | 2020-12-23 13:55:45 (GMT) |
commit | 72e7c45e984c006c12a4cb8159d3fa3784c02212 (patch) | |
tree | 823979fc5f29db333606abcc17a1cfd6b4f1b311 /Tests/CMakeCommands | |
parent | 440531e0f9abba65839e2e242367c6091cc4789c (diff) | |
download | CMake-72e7c45e984c006c12a4cb8159d3fa3784c02212.zip CMake-72e7c45e984c006c12a4cb8159d3fa3784c02212.tar.gz CMake-72e7c45e984c006c12a4cb8159d3fa3784c02212.tar.bz2 |
Tests: Bump CMake minimum required in tests to 2.8.12
Since 3.19, CMake generates a deprecation warning when using a minimum
version less than 2.8.12. This eliminates those warnings generated
during tests, which are typically hidden from the user and developer but
are being generated nonetheless.
Diffstat (limited to 'Tests/CMakeCommands')
5 files changed, 7 insertions, 4 deletions
diff --git a/Tests/CMakeCommands/add_compile_options/CMakeLists.txt b/Tests/CMakeCommands/add_compile_options/CMakeLists.txt index 995b32c..b28d0be 100644 --- a/Tests/CMakeCommands/add_compile_options/CMakeLists.txt +++ b/Tests/CMakeCommands/add_compile_options/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 2.8) +cmake_minimum_required(VERSION 2.8.12) project(add_compile_options) diff --git a/Tests/CMakeCommands/target_compile_definitions/CMakeLists.txt b/Tests/CMakeCommands/target_compile_definitions/CMakeLists.txt index a5bc1e1..72b3502 100644 --- a/Tests/CMakeCommands/target_compile_definitions/CMakeLists.txt +++ b/Tests/CMakeCommands/target_compile_definitions/CMakeLists.txt @@ -1,5 +1,5 @@ -cmake_minimum_required(VERSION 2.8) +cmake_minimum_required(VERSION 2.8.12) project(target_compile_definitions) diff --git a/Tests/CMakeCommands/target_compile_options/CMakeLists.txt b/Tests/CMakeCommands/target_compile_options/CMakeLists.txt index a7055b1..268c7eb 100644 --- a/Tests/CMakeCommands/target_compile_options/CMakeLists.txt +++ b/Tests/CMakeCommands/target_compile_options/CMakeLists.txt @@ -1,5 +1,5 @@ -cmake_minimum_required(VERSION 2.8) +cmake_minimum_required(VERSION 2.8.12) project(target_compile_options) diff --git a/Tests/CMakeCommands/target_include_directories/CMakeLists.txt b/Tests/CMakeCommands/target_include_directories/CMakeLists.txt index 8713d99..0702ab5 100644 --- a/Tests/CMakeCommands/target_include_directories/CMakeLists.txt +++ b/Tests/CMakeCommands/target_include_directories/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 2.8) +cmake_minimum_required(VERSION 2.8.12) project(target_include_directories) diff --git a/Tests/CMakeCommands/target_link_libraries/CMakeLists.txt b/Tests/CMakeCommands/target_link_libraries/CMakeLists.txt index 5c704ac..aa8e21a 100644 --- a/Tests/CMakeCommands/target_link_libraries/CMakeLists.txt +++ b/Tests/CMakeCommands/target_link_libraries/CMakeLists.txt @@ -1,3 +1,6 @@ +# Using 2.8 will trigger a deprecation warning. In this case it's explicitly +# intentional since the tests checks various policy implementations prior to +# 2.8.12 cmake_minimum_required(VERSION 2.8) project(target_link_libraries) |