diff options
author | Brad King <brad.king@kitware.com> | 2014-01-28 22:07:56 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-01-28 22:07:56 (GMT) |
commit | 5e4b8871bc12230e826d99371f5cbd0d6784d8e8 (patch) | |
tree | dbf6ef6795494706edd32751768a1ec1979d7d32 /Tests/RunCMake | |
parent | 8157f58d024547aef221259b65ce2c502ee514d4 (diff) | |
download | CMake-5e4b8871bc12230e826d99371f5cbd0d6784d8e8.zip CMake-5e4b8871bc12230e826d99371f5cbd0d6784d8e8.tar.gz CMake-5e4b8871bc12230e826d99371f5cbd0d6784d8e8.tar.bz2 |
Cygwin: Avoid legacy warnings in RunCMake.CMP004[1235] tests
Set the minimum required version of CMake high enough to avoid the
warning for CMAKE_LEGACY_CYGWIN_WIN32. The warning appears on stderr
and breaks the expected output matching.
Diffstat (limited to 'Tests/RunCMake')
-rw-r--r-- | Tests/RunCMake/CMP0041/CMakeLists.txt | 2 | ||||
-rw-r--r-- | Tests/RunCMake/CMP0042/CMakeLists.txt | 2 | ||||
-rw-r--r-- | Tests/RunCMake/CMP0043/CMakeLists.txt | 2 | ||||
-rw-r--r-- | Tests/RunCMake/CMP0045/CMakeLists.txt | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/Tests/RunCMake/CMP0041/CMakeLists.txt b/Tests/RunCMake/CMP0041/CMakeLists.txt index 11ea636..f1d9cae 100644 --- a/Tests/RunCMake/CMP0041/CMakeLists.txt +++ b/Tests/RunCMake/CMP0041/CMakeLists.txt @@ -1,3 +1,3 @@ -cmake_minimum_required(VERSION 2.8) +cmake_minimum_required(VERSION 2.8.4) project(${RunCMake_TEST} CXX) include(${RunCMake_TEST}.cmake NO_POLICY_SCOPE) diff --git a/Tests/RunCMake/CMP0042/CMakeLists.txt b/Tests/RunCMake/CMP0042/CMakeLists.txt index 11ea636..f1d9cae 100644 --- a/Tests/RunCMake/CMP0042/CMakeLists.txt +++ b/Tests/RunCMake/CMP0042/CMakeLists.txt @@ -1,3 +1,3 @@ -cmake_minimum_required(VERSION 2.8) +cmake_minimum_required(VERSION 2.8.4) project(${RunCMake_TEST} CXX) include(${RunCMake_TEST}.cmake NO_POLICY_SCOPE) diff --git a/Tests/RunCMake/CMP0043/CMakeLists.txt b/Tests/RunCMake/CMP0043/CMakeLists.txt index b465c88..5e95460 100644 --- a/Tests/RunCMake/CMP0043/CMakeLists.txt +++ b/Tests/RunCMake/CMP0043/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 2.8) +cmake_minimum_required(VERSION 2.8.4) project(${RunCMake_TEST} CXX) include(${RunCMake_TEST}.cmake NO_POLICY_SCOPE) diff --git a/Tests/RunCMake/CMP0045/CMakeLists.txt b/Tests/RunCMake/CMP0045/CMakeLists.txt index 11ea636..f1d9cae 100644 --- a/Tests/RunCMake/CMP0045/CMakeLists.txt +++ b/Tests/RunCMake/CMP0045/CMakeLists.txt @@ -1,3 +1,3 @@ -cmake_minimum_required(VERSION 2.8) +cmake_minimum_required(VERSION 2.8.4) project(${RunCMake_TEST} CXX) include(${RunCMake_TEST}.cmake NO_POLICY_SCOPE) |