Add C++ implementation

This commit is contained in:
Clare Macrae
2019-08-13 09:44:16 +01:00
parent 4b9521d849
commit 7c3a7d4220
10 changed files with 31411 additions and 0 deletions

15
cpp/tests/CMakeLists.txt Normal file
View 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})