Fix unit testing setup

This commit is contained in:
Brad Davis 2018-05-17 15:05:40 -07:00
parent fb7b1d3550
commit e81d2809c1
2 changed files with 4 additions and 4 deletions

View file

@ -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()

View file

@ -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")