mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-13 22:27:13 +02:00
remove ALL_TEST_TARGETS debug
This commit is contained in:
parent
7b920b6047
commit
8d0478dbef
1 changed files with 1 additions and 3 deletions
|
@ -19,8 +19,6 @@ add_custom_target("test-extensions"
|
|||
list(APPEND ALL_TEST_TARGETS "test-extensions")
|
||||
set_target_properties("test-extensions" PROPERTIES FOLDER "Tests")
|
||||
|
||||
message(STATUS "ALL_TEST_TARGETS = ${ALL_TEST_TARGETS}")
|
||||
|
||||
# Create the all-tests build target.
|
||||
# The dependency list (ALL_TEST_TARGETS) is generated from setup_hifi_testcase invocations in the CMakeLists.txt
|
||||
# files in the test subdirs. Note: since variables normally do *not* persist into parent scope, we use a hack:
|
||||
|
@ -28,7 +26,7 @@ message(STATUS "ALL_TEST_TARGETS = ${ALL_TEST_TARGETS}")
|
|||
# list(APPEND ALL_TEST_TARGETS ${targets_to_add...}) # appends to a local list var (copied from parent scope)
|
||||
# set (ALL_TEST_TARGETS "${ALL_TEST_TARGETS}" PARENT_SCOPE) # copies this back to parent scope
|
||||
#
|
||||
add_custom_target("all-tests"
|
||||
add_custom_target("all-tests"
|
||||
COMMAND ctest .
|
||||
DEPENDS "${ALL_TEST_TARGETS}")
|
||||
set_target_properties("all-tests" PROPERTIES FOLDER "hidden/test-targets")
|
||||
|
|
Loading…
Reference in a new issue