From ae5a3160d473e63b4ebef5111fbddd76a4132dda 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 fe80df56..64be9b95 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)