From 95fadd7ab87e9317fc30d290539eb14a67e1554a Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Mon, 10 May 2010 20:31:11 +0200 Subject: [PATCH] Set Cmake version requirement to 2.8.0 (2.6.0 does not work with Eeschema Cmakefile) --- CMakeLists.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e5c8c8a782..68c92206ac 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,9 +1,10 @@ project(kicad) +# test the minimun Cmake version (could be different under unix or Windows if(WIN32) - cmake_minimum_required(VERSION 2.6.1 FATAL_ERROR) + cmake_minimum_required(VERSION 2.8.0 FATAL_ERROR) else(WIN32) - cmake_minimum_required(VERSION 2.6.0 FATAL_ERROR) + cmake_minimum_required(VERSION 2.8.0 FATAL_ERROR) endif(WIN32) # Path to local CMake modules.