Tests/RunCMake: Allow tests to control build tree behavior
Teach the run_cmake to allow tests to set a custom test build directory. Also add an option to skip removing the build directory.
This commit is contained in:
parent
2963c9828c
commit
c307e1c911
|
@ -26,8 +26,12 @@ function(run_cmake test)
|
|||
endif()
|
||||
endforeach()
|
||||
set(RunCMake_TEST_SOURCE_DIR "${top_src}")
|
||||
if(NOT RunCMake_TEST_BINARY_DIR)
|
||||
set(RunCMake_TEST_BINARY_DIR "${top_bin}/${test}-build")
|
||||
endif()
|
||||
if(NOT RunCMake_TEST_NO_CLEAN)
|
||||
file(REMOVE_RECURSE "${RunCMake_TEST_BINARY_DIR}")
|
||||
endif()
|
||||
file(MAKE_DIRECTORY "${RunCMake_TEST_BINARY_DIR}")
|
||||
if(NOT DEFINED RunCMake_TEST_OPTIONS)
|
||||
set(RunCMake_TEST_OPTIONS "")
|
||||
|
|
Loading…
Reference in New Issue