You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
298 B
10 lines
298 B
set(min_ver 2.7.20090305)
|
|
cmake_minimum_required(VERSION ${min_ver})
|
|
|
|
if("${CMAKE_VERSION}" VERSION_LESS "${min_ver}")
|
|
message(FATAL_ERROR
|
|
"CMAKE_VERSION=[${CMAKE_VERSION}] is less than [${min_ver}]")
|
|
else()
|
|
message("CMAKE_VERSION=[${CMAKE_VERSION}] is not less than [${min_ver}]")
|
|
endif()
|