diff options
| author | Douglas Rumbaugh <dbr4@psu.edu> | 2025-04-09 18:23:48 -0400 |
|---|---|---|
| committer | Douglas Rumbaugh <dbr4@psu.edu> | 2025-04-09 18:23:48 -0400 |
| commit | 4e0e54776dd5d148d2169e2b889e753ff2dd88f7 (patch) | |
| tree | d31400cf881a0effc4e396badd9075f85bfb433c /CMakeLists.txt | |
| parent | 67e76598bb687ebcad4da04b18728c0bf085ebcc (diff) | |
| download | dynamic-extension-4e0e54776dd5d148d2169e2b889e753ff2dd88f7.tar.gz | |
Missed cmakelists in last commit
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 11 |
1 files changed, 11 insertions, 0 deletions
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() |