Initial Commit

This commit is contained in:
Ian Roddis
2021-06-02 10:38:57 -03:00
commit e64361c864
10 changed files with 17815 additions and 0 deletions

5
tests/CMakeLists.txt Normal file
View File

@@ -0,0 +1,5 @@
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)