mirror of
https://github.com/ysoftdevs/Theatrical-Players-Refactoring-Kata.git
synced 2026-01-14 15:43:27 +01:00
15 lines
284 B
CMake
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}) |