summaryrefslogtreecommitdiffstats
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorDouglas Rumbaugh <dbr4@psu.edu>2025-09-17 17:52:51 -0400
committerDouglas Rumbaugh <dbr4@psu.edu>2025-09-17 17:52:51 -0400
commit79dcefa5002f6411e05169a226ae9e3cd1114bd7 (patch)
tree64d3c31850a7a0f9a57dcef75f385481fd9d8aef /CMakeLists.txt
parent7c3fe4ea760f4773f0eb1a98ed3ba493a36015e2 (diff)
parent601481ed0a8061a372900cfb6761e8de81651339 (diff)
downloaddynamic-extension-79dcefa5002f6411e05169a226ae9e3cd1114bd7.tar.gz
Merge branch 'new-concurrency' of github.com:dbrumbaugh/dynamic-extension-working into new-concurrency
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 29c3066..6ad9040 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -363,6 +363,11 @@ if (tail_bench)
target_include_directories(stall_benchmark_vptree PRIVATE include external external/m-tree/cpp external/PGM-index/include external/PLEX/include benchmarks/include external/psudb-common/cpp/include)
target_link_options(stall_benchmark_vptree PUBLIC -mcx16)
+ add_executable(isam_construction_times ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/tail-latency/isam_construction_times.cpp)
+ target_link_libraries(isam_construction_times PUBLIC gsl pthread atomic)
+ target_include_directories(isam_construction_times PRIVATE include external external/m-tree/cpp external/PGM-index/include external/PLEX/include benchmarks/include external/psudb-common/cpp/include)
+ target_link_options(isam_construction_times PUBLIC -mcx16)
+
add_executable(selectivity_sweep ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/tail-latency/selectivity_sweep.cpp)
target_link_libraries(selectivity_sweep PUBLIC gsl pthread atomic)
target_include_directories(selectivity_sweep PRIVATE include external external/m-tree/cpp external/PGM-index/include external/PLEX/include benchmarks/include external/psudb-common/cpp/include)