summaryrefslogtreecommitdiffstats
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorDouglas Rumbaugh <dbr4@psu.edu>2023-05-09 17:59:37 -0400
committerDouglas Rumbaugh <dbr4@psu.edu>2023-05-09 17:59:37 -0400
commit418e9b079e559c86f3a5b276f712ad2f5d66533c (patch)
tree943fa44b741a861a85ea43023a49fac112d26dbb /CMakeLists.txt
parentbc403d2d4f81c97a468e92d3b0981590fbe032cc (diff)
downloaddynamic-extension-418e9b079e559c86f3a5b276f712ad2f5d66533c.tar.gz
Ported over IRS with unit tests
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index c93f75a..3f551a3 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -49,6 +49,10 @@ if (tests)
target_link_libraries(dynamic_extension_tests PUBLIC gsl check subunit pthread)
target_include_directories(dynamic_extension_tests PRIVATE include)
+ 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)
+
endif()