From abfebefbb981a95837ffe88f98956785d936306d Mon Sep 17 00:00:00 2001 From: Brad King Date: Sat, 19 Oct 2013 06:43:09 -0400 Subject: [PATCH] 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. --- Tests/RunCMake/CMP0026/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/RunCMake/CMP0026/CMakeLists.txt b/Tests/RunCMake/CMP0026/CMakeLists.txt index e8db6b05b..12cd3c775 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)