mirror of https://github.com/CGAL/cgal
Followup of the previous commit: require cmake-2.8.6 on Windows
This commit is contained in:
parent
c81dd1c3c3
commit
3437d2ae3c
|
|
@ -1,7 +1,12 @@
|
||||||
# Top level CMakeLists.txt for CGAL-branchbuild
|
# Top level CMakeLists.txt for CGAL-branchbuild
|
||||||
project(CGAL CXX)
|
project(CGAL CXX)
|
||||||
|
|
||||||
cmake_minimum_required(VERSION 2.6.2)
|
# Minimal version of CMake:
|
||||||
|
if(WIN32)
|
||||||
|
cmake_minimum_required(VERSION 2.6.2)
|
||||||
|
else(WIN32)
|
||||||
|
cmake_minimum_required(VERSION 2.8.6)
|
||||||
|
endif()
|
||||||
|
|
||||||
# option for branch build
|
# option for branch build
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue