diff options
| author | Douglas Rumbaugh <dbr4@psu.edu> | 2023-06-05 11:43:14 -0400 |
|---|---|---|
| committer | Douglas Rumbaugh <dbr4@psu.edu> | 2023-06-05 11:43:14 -0400 |
| commit | 7dcec45b0339cd8b9b2bfab8ce1fc4c6080ea958 (patch) | |
| tree | db48d4068a29204f6f5725e43841c974cc4cc6f5 /CMakeLists.txt | |
| parent | cd6231c89643d450f538c6063fb759b3bfcea924 (diff) | |
| download | dynamic-extension-7dcec45b0339cd8b9b2bfab8ce1fc4c6080ea958.tar.gz | |
WSS tests + bugfixes
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 1c32700..367f2e9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -52,6 +52,10 @@ if (tests) add_executable(memisam_tests ${CMAKE_CURRENT_SOURCE_DIR}/tests/memisam_tests.cpp) target_link_libraries(memisam_tests PUBLIC gsl check subunit pthread) target_include_directories(memisam_tests PRIVATE include) + + add_executable(wss_tests ${CMAKE_CURRENT_SOURCE_DIR}/tests/wss_tests.cpp) + target_link_libraries(wss_tests PUBLIC gsl check subunit pthread) + target_include_directories(wss_tests PRIVATE include) endif() # Benchmark build instructions |