diff options
| author | Douglas Rumbaugh <dbr4@psu.edu> | 2023-05-09 15:13:35 -0400 |
|---|---|---|
| committer | Douglas Rumbaugh <dbr4@psu.edu> | 2023-05-09 15:13:35 -0400 |
| commit | c867d59aaf61bb1a0839d34b56935f52c0fc6e00 (patch) | |
| tree | e01596ec9cd950d9ca6af8c4a0c469dfca1f8815 /CMakeLists.txt | |
| parent | 9b55600a3bb50d95d6c47e0339f861448ca18c30 (diff) | |
| download | dynamic-extension-c867d59aaf61bb1a0839d34b56935f52c0fc6e00.tar.gz | |
Dynamic Extension unit tests + bugfixes
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 72ee9a4..c93f75a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,7 @@ set(CMAKE_CXX_STANDARD_REQUIRED True) set(namespace "de") project("Practical Dynamic Extension" VERSION 0.1.0) -set(debug true) +set(debug false) set(tests True) set(bench True) @@ -45,6 +45,11 @@ if (tests) target_link_libraries(mutable_buffer_tests PUBLIC gsl check subunit pthread) target_include_directories(mutable_buffer_tests PRIVATE include) + add_executable(dynamic_extension_tests ${CMAKE_CURRENT_SOURCE_DIR}/tests/dynamic_extension_tests.cpp) + target_link_libraries(dynamic_extension_tests PUBLIC gsl check subunit pthread) + target_include_directories(dynamic_extension_tests PRIVATE include) + + endif() # Benchmark build instructions |