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/MFC | |
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/MFC')
-rw-r--r-- | Tests/MFC/CMakeLists.txt | 2 | ||||
-rw-r--r-- | Tests/MFC/CMakeLists.txt.in | 2 | ||||
-rw-r--r-- | Tests/MFC/try_compile/CMakeLists.txt | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/Tests/MFC/CMakeLists.txt b/Tests/MFC/CMakeLists.txt index 62ff749..d17b955 100644 --- a/Tests/MFC/CMakeLists.txt +++ b/Tests/MFC/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 2.8) +cmake_minimum_required(VERSION 2.8.12) project(mfc_driver) include(CTest) diff --git a/Tests/MFC/CMakeLists.txt.in b/Tests/MFC/CMakeLists.txt.in index 3632e03..a600c63 100644 --- a/Tests/MFC/CMakeLists.txt.in +++ b/Tests/MFC/CMakeLists.txt.in @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 2.8) +cmake_minimum_required(VERSION 2.8.12) project(mfc1) macro(replace_flags var these those) diff --git a/Tests/MFC/try_compile/CMakeLists.txt b/Tests/MFC/try_compile/CMakeLists.txt index 8e5d746..768d2a6 100644 --- a/Tests/MFC/try_compile/CMakeLists.txt +++ b/Tests/MFC/try_compile/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 2.8) +cmake_minimum_required(VERSION 2.8.12) project(try_compile_mfc) set(files |