From 4ea27bcc4c52773e514a41f9468b216166999668 Mon Sep 17 00:00:00 2001 From: Brad King Date: Fri, 25 Oct 2013 15:07:35 -0400 Subject: [PATCH] Cygwin: Avoid legacy warnings in RunCMake.DisallowedCommands 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/DisallowedCommands/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/RunCMake/DisallowedCommands/CMakeLists.txt b/Tests/RunCMake/DisallowedCommands/CMakeLists.txt index e8db6b05b..12cd3c775 100644 --- a/Tests/RunCMake/DisallowedCommands/CMakeLists.txt +++ b/Tests/RunCMake/DisallowedCommands/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)