diff options
author | Brad King <brad.king@kitware.com> | 2013-10-19 10:43:09 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2013-10-19 10:47:12 (GMT) |
commit | abfebefbb981a95837ffe88f98956785d936306d (patch) | |
tree | fdedfdabd42cdf2d0f018c17cd9d3c0cac692343 /Tests/RunCMake | |
parent | e4e5b28c27dc2e6f0073e11fb64c4ea62022a051 (diff) | |
download | CMake-abfebefbb981a95837ffe88f98956785d936306d.zip CMake-abfebefbb981a95837ffe88f98956785d936306d.tar.gz CMake-abfebefbb981a95837ffe88f98956785d936306d.tar.bz2 |
Cygwin: Avoid legacy warnings in RunCMake.CMP0026 test
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/CMP0026/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/RunCMake/CMP0026/CMakeLists.txt b/Tests/RunCMake/CMP0026/CMakeLists.txt index e8db6b0..12cd3c7 100644 --- a/Tests/RunCMake/CMP0026/CMakeLists.txt +++ b/Tests/RunCMake/CMP0026/CMakeLists.txt @@ -1,3 +1,3 @@ -cmake_minimum_required(VERSION 2.8) +cmake_minimum_required(VERSION 2.8.4) project(${RunCMake_TEST} NONE) include(${RunCMake_TEST}.cmake) |