From 5121034bb803023b8164dfcfec0e82d05a6530f6 Mon Sep 17 00:00:00 2001 From: Omer Katz Date: Tue, 29 Dec 2015 15:24:13 +0200 Subject: [PATCH] CMake will no longer complain that the minimum CMake version is not specified for test/CMakeLists.txt. --- test/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index c698af4..4af75bd 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -1,3 +1,5 @@ +CMAKE_MINIMUM_REQUIRED(VERSION 2.8) + find_package(GTestSrc) IF(GTESTSRC_FOUND)