mirror of
https://github.com/ysoftdevs/Theatrical-Players-Refactoring-Kata.git
synced 2026-04-20 16:01:41 +02:00
Add C++ implementation
This commit is contained in:
15
cpp/tests/CMakeLists.txt
Normal file
15
cpp/tests/CMakeLists.txt
Normal file
@@ -0,0 +1,15 @@
|
||||
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})
|
||||
Reference in New Issue
Block a user