cmake/Tests/RunCMake/test_include_dirs/RunCMakeTest.cmake

22 lines
712 B
CMake
Raw Normal View History

2018-01-26 17:06:56 +01:00
include(RunCMake)
2023-05-23 16:38:00 +02:00
# Isolate our ctest runs from external environment.
unset(ENV{CTEST_PARALLEL_LEVEL})
unset(ENV{CTEST_OUTPUT_ON_FAILURE})
2018-01-26 17:06:56 +01:00
function(run_TID)
# Use a single build tree for a few tests without cleaning.
set(RunCMake_TEST_BINARY_DIR ${RunCMake_BINARY_DIR}/TID-build)
set(RunCMake_TEST_NO_CLEAN 1)
2018-04-23 21:13:27 +02:00
if(NOT RunCMake_GENERATOR_IS_MULTI_CONFIG)
2018-01-26 17:06:56 +01:00
set(RunCMake_TEST_OPTIONS -DCMAKE_BUILD_TYPE=Debug)
endif()
file(REMOVE_RECURSE "${RunCMake_TEST_BINARY_DIR}")
file(MAKE_DIRECTORY "${RunCMake_TEST_BINARY_DIR}")
run_cmake(TID)
run_cmake_command(TID-build ${CMAKE_COMMAND} --build . --config Debug)
run_cmake_command(TID-test ${CMAKE_CTEST_COMMAND} -C Debug)
endfunction()
run_TID()