mirror of
https://github.com/reactos/CMake.git
synced 2025-02-12 23:19:13 +00:00
![Brad King](/assets/img/avatar_default.png)
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})
|