mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 13:51:33 -06:00
We frequently need to wipe out all the CMake test build directories in order to run tests from scratch. This change adds a test_clean custom target to remove all these directories for out-of-source builds.
3 lines
81 B
CMake
3 lines
81 B
CMake
SET(TEST_BUILD_DIRS "@TEST_BUILD_DIRS@")
|
|
FILE(REMOVE_RECURSE ${TEST_BUILD_DIRS})
|