Files
Theatrical-Players-Refactor…/cpp/tests/CMakeLists.txt
2019-08-13 09:44:16 +01:00

15 lines
284 B
CMake

project(tests)
add_executable(${PROJECT_NAME}
../statement.cpp
../statement.h
test_statement.cpp
main.cpp)
target_include_directories(
${PROJECT_NAME}
PUBLIC
../third_party ..)
enable_testing()
add_test(NAME ${PROJECT_NAME}_test COMMAND ${PROJECT_NAME})