summaryrefslogtreecommitdiffstats
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorDouglas Rumbaugh <dbr4@psu.edu>2025-05-29 12:42:42 -0400
committerDouglas Rumbaugh <dbr4@psu.edu>2025-05-29 12:42:42 -0400
commit484818ba5f755c98702b43c84892d7ab3ededa4e (patch)
treeddfd14210adb27b82dee79f5d00f5edc90b5e158 /CMakeLists.txt
parentfc87a983830b5fd727d7873ae609a038966163a0 (diff)
parentcd961cc231ca3073f03d82b99153a6d0f5a4c7f1 (diff)
downloaddynamic-extension-484818ba5f755c98702b43c84892d7ab3ededa4e.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.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 68b3b63..81cdc98 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -343,12 +343,16 @@ if (tail_bench)
target_include_directories(stall_benchmark 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 PUBLIC -mcx16)
-
add_executable(stall_benchmark_vptree ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/tail-latency/stall_benchmark_vptree.cpp)
target_link_libraries(stall_benchmark_vptree PUBLIC gsl pthread atomic)
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(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)
+ target_link_options(selectivity_sweep PUBLIC -mcx16)
+
endif()
if (bench)