mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-05 21:02:25 +02:00
Fix unit testing setup
This commit is contained in:
parent
fb7b1d3550
commit
e81d2809c1
2 changed files with 4 additions and 4 deletions
|
@ -179,6 +179,10 @@ endif()
|
|||
add_subdirectory(tools)
|
||||
|
||||
if (BUILD_TESTS)
|
||||
# Turn on testing so that add_test works
|
||||
# MUST be in the root cmake file for ctest to work
|
||||
include(CTest)
|
||||
enable_testing()
|
||||
add_subdirectory(tests)
|
||||
add_subdirectory(tests-manual)
|
||||
endif()
|
||||
|
|
|
@ -1,7 +1,3 @@
|
|||
|
||||
# Turn on testing (so that add_test works)
|
||||
enable_testing()
|
||||
|
||||
# add the test directories
|
||||
file(GLOB TEST_SUBDIRS RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" "${CMAKE_CURRENT_SOURCE_DIR}/*")
|
||||
list(REMOVE_ITEM TEST_SUBDIRS "CMakeFiles" "mocha")
|
||||
|
|
Loading…
Reference in a new issue