summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDouglas Rumbaugh <dbr4@psu.edu>2024-01-22 13:34:26 -0500
committerDouglas Rumbaugh <dbr4@psu.edu>2024-01-22 13:34:26 -0500
commitda5dd66fd3ff184f8a8591ba1f7a8b58f6a7fa6e (patch)
treeaefba70f4156f7c03fba0599c5134c390320ce87
parentdea7f559c4fa5cd603ce23d66c3c1b9311adc1cb (diff)
downloaddynamic-extension-da5dd66fd3ff184f8a8591ba1f7a8b58f6a7fa6e.tar.gz
Added watermark testing to CMake
-rw-r--r--CMakeLists.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index a051361..f3d6c3a 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -130,6 +130,12 @@ if (bench)
target_include_directories(insert_query_tput PRIVATE include external external/m-tree/cpp external/PGM-index/include external/PLEX/include bench/include external/psudb-common/cpp/include)
target_link_options(insert_query_tput PUBLIC -mcx16)
+ add_executable(watermark_testing ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/watermark_testing.cpp)
+ target_link_libraries(watermark_testing PUBLIC gsl pthread gomp atomic)
+ target_include_directories(watermark_testing PRIVATE include external external/m-tree/cpp external/PGM-index/include external/PLEX/include bench/include external/psudb-common/cpp/include)
+ target_link_options(watermark_testing PUBLIC -mcx16)
+
+
endif()
if (old_bench)