Files
daggy/tests/CMakeLists.txt
2021-08-02 11:31:46 -03:00

5 lines
196 B
CMake

project(tests)
file(GLOB UNIT_TESTS unit_*.cpp)
file(GLOB INTEGRATION_TESTS int_*.cpp)
add_executable(tests main.cpp ${UNIT_TESTS} ${INTEGRATION_TESTS})
target_link_libraries(tests daggy stdc++fs)