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.
19 lines
559 B
19 lines
559 B
9 years ago
|
include(RunCMake)
|
||
|
|
||
|
function(run_CMP0058 case)
|
||
|
# Use a single build tree for a few tests without cleaning.
|
||
|
set(RunCMake_TEST_BINARY_DIR ${RunCMake_BINARY_DIR}/CMP0058-${case}-build)
|
||
|
set(RunCMake_TEST_NO_CLEAN 1)
|
||
|
file(REMOVE_RECURSE "${RunCMake_TEST_BINARY_DIR}")
|
||
|
file(MAKE_DIRECTORY "${RunCMake_TEST_BINARY_DIR}")
|
||
|
run_cmake(CMP0058-${case})
|
||
|
run_cmake_command(CMP0058-${case}-build ${CMAKE_COMMAND} --build .)
|
||
|
endfunction()
|
||
|
|
||
|
run_CMP0058(OLD-no)
|
||
|
run_CMP0058(OLD-by)
|
||
|
run_CMP0058(WARN-no)
|
||
|
run_CMP0058(WARN-by)
|
||
|
run_CMP0058(NEW-no)
|
||
|
run_CMP0058(NEW-by)
|