summaryrefslogtreecommitdiffstats
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorDouglas B. Rumbaugh <doug@douglasrumbaugh.com>2025-08-14 09:09:44 -0400
committerDouglas B. Rumbaugh <doug@douglasrumbaugh.com>2025-08-14 09:09:44 -0400
commit601481ed0a8061a372900cfb6761e8de81651339 (patch)
treea74ece5b35c101675078f84f86ba212ca2a576a7 /CMakeLists.txt
parent911eb0ef61dc7d327507c6406120a80797190884 (diff)
downloaddynamic-extension-601481ed0a8061a372900cfb6761e8de81651339.tar.gz
Per record cost estimation progress
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 a7bcad6..31cdc50 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -348,6 +348,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)