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/BuildDepends | |
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/BuildDepends')
-rw-r--r-- | Tests/BuildDepends/CMakeLists.txt | 2 | ||||
-rw-r--r-- | Tests/BuildDepends/Project/CMakeLists.txt | 2 | ||||
-rw-r--r-- | Tests/BuildDepends/Project/External/CMakeLists.txt | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/Tests/BuildDepends/CMakeLists.txt b/Tests/BuildDepends/CMakeLists.txt index 2fa2bc5..7f9e41e 100644 --- a/Tests/BuildDepends/CMakeLists.txt +++ b/Tests/BuildDepends/CMakeLists.txt @@ -4,7 +4,7 @@ # are working the executable should relink with the new # value. The subdir Project contains the CMakelists.txt # and source files for the test project. -cmake_minimum_required (VERSION 2.6) +cmake_minimum_required (VERSION 3.10) project(BuildDepends) # This entire test takes place during the initial diff --git a/Tests/BuildDepends/Project/CMakeLists.txt b/Tests/BuildDepends/Project/CMakeLists.txt index 2abda2e..cf07819 100644 --- a/Tests/BuildDepends/Project/CMakeLists.txt +++ b/Tests/BuildDepends/Project/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 2.6) +cmake_minimum_required(VERSION 3.10) project(testRebuild) if(APPLE AND CMake_TEST_XCODE_VERSION) diff --git a/Tests/BuildDepends/Project/External/CMakeLists.txt b/Tests/BuildDepends/Project/External/CMakeLists.txt index c6015b6..fc99805 100644 --- a/Tests/BuildDepends/Project/External/CMakeLists.txt +++ b/Tests/BuildDepends/Project/External/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.0) +cmake_minimum_required(VERSION 3.10) project(BuildDependsExternal NONE) if(NOT DEFINED external_in) message(FATAL_ERROR "Define external_in") |