Register Catch2 tests with CTest

This commit is contained in:
JosiahWI 2023-01-31 08:42:35 -06:00 committed by Josiah VanderZee
parent a73e6895d8
commit 595e519cdf
1 changed files with 6 additions and 0 deletions

View File

@ -18,3 +18,9 @@ target_link_libraries(tests
Catch2::Catch
IrrlichtMt::IrrlichtMt
)
add_test(
NAME tests
COMMAND "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/tests"
WORKING_DIRECTORY "${PROJECT_SOURCE_DIR}"
)