From 4e0e54776dd5d148d2169e2b889e753ff2dd88f7 Mon Sep 17 00:00:00 2001 From: Douglas Rumbaugh Date: Wed, 9 Apr 2025 18:23:48 -0400 Subject: Missed cmakelists in last commit --- CMakeLists.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0273b5a..9f1c74c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -323,6 +323,16 @@ if (tail_bench) target_include_directories(insert_query_threads PRIVATE include external external/m-tree/cpp external/PGM-index/include external/PLEX/include benchmarks/include external/psudb-common/cpp/include) target_link_options(insert_query_threads PUBLIC -mcx16) + add_executable(query_detail ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/tail-latency/query_detail.cpp) + target_link_libraries(query_detail PUBLIC gsl pthread atomic) + target_include_directories(query_detail PRIVATE include external external/m-tree/cpp external/PGM-index/include external/PLEX/include benchmarks/include external/psudb-common/cpp/include) + target_link_options(query_detail PUBLIC -mcx16) + + add_executable(query_parm_sweep ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/tail-latency/query_parm_sweep.cpp) + target_link_libraries(query_parm_sweep PUBLIC gsl pthread atomic) + target_include_directories(query_parm_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(query_parm_sweep PUBLIC -mcx16) + endif() if (bench) @@ -382,4 +392,5 @@ if (bench) target_include_directories(insert_tail_latency PRIVATE include external external/m-tree/cpp external/PGM-index/include external/PLEX/include benchmarks/include external/psudb-common/cpp/include) target_link_options(insert_tail_latency PUBLIC -mcx16) + endif() -- cgit v1.2.3