Minor release

Add test cases
This commit is contained in:
2022-11-13 15:48:37 +01:00
parent 16cf2eb08f
commit 992a37d514
5 changed files with 44 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
# Third Party
include_directories(${GTEST_INCLUDE_DIR})
link_directories(${GTEST_LIB_DIR})
set(LIBS
${LIBS}
gtest
TopTeamBedrijfssimulaties)
# tests
file(GLOB_RECURSE TEST_SOURCES "*.cpp")
add_executable(tests ${TEST_SOURCES})
target_link_libraries(tests ${LIBS})