From 1e2270b370912136d7822c2a0b5546f3ddff3856 Mon Sep 17 00:00:00 2001 From: "Daniele E. Domenichelli" Date: Thu, 7 Mar 2019 16:01:19 +0100 Subject: [PATCH] ParseAndAddCatchTests: Do not change CMAKE_MINIMUM_REQUIRED_VERSION when included --- contrib/ParseAndAddCatchTests.cmake | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/contrib/ParseAndAddCatchTests.cmake b/contrib/ParseAndAddCatchTests.cmake index eb98c7b2..dac1dc92 100644 --- a/contrib/ParseAndAddCatchTests.cmake +++ b/contrib/ParseAndAddCatchTests.cmake @@ -54,7 +54,9 @@ # # #==================================================================================================# -cmake_minimum_required(VERSION 2.8.8) +if (CMAKE_MINIMUM_REQUIRED_VERSION VERSION_LESS 2.8.8) + message(FATAL_ERROR "ParseAndAddCatchTests requires CMake 2.8.8 or newer") +endif() option(PARSE_CATCH_TESTS_VERBOSE "Print Catch to CTest parser debug messages" OFF) option(PARSE_CATCH_TESTS_NO_HIDDEN_TESTS "Exclude tests with [!hide], [.] or [.foo] tags" OFF)