From d303957d017f5212ca2303ab23ef574538796326 Mon Sep 17 00:00:00 2001 From: Uli Schlachter Date: Thu, 28 Oct 2010 22:20:22 +0200 Subject: [PATCH] Set minimum required cmake version to 2.8.0 We are using file(copy ...) which seems to be new in cmake 2.8. Signed-off-by: Uli Schlachter --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 82515f4e..4cf74b6e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 2.6.0) +cmake_minimum_required(VERSION 2.8.0) set(CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS TRUE) if(COMMAND cmake_policy) -- 2.11.4.GIT