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.
17 lines
324 B
17 lines
324 B
include(RunCMake)
|
|
unset(ENV{CMAKE_CONFIG_TYPE})
|
|
|
|
run_cmake(ErrorsOFF)
|
|
run_cmake(ErrorsON)
|
|
|
|
set(RunCMake_TEST_OPTIONS -DNoProject=1)
|
|
run_cmake(BeforeProject)
|
|
unset(RunCMake_TEST_OPTIONS)
|
|
|
|
run_cmake(CMP0061-NEW)
|
|
if(RunCMake_GENERATOR MATCHES "Make")
|
|
run_cmake(CMP0061-OLD-make)
|
|
else()
|
|
run_cmake(CMP0061-OLD-other)
|
|
endif()
|