diff options
| author | Douglas Rumbaugh <dbr4@psu.edu> | 2025-02-17 16:40:11 -0500 |
|---|---|---|
| committer | Douglas Rumbaugh <dbr4@psu.edu> | 2025-02-17 16:40:11 -0500 |
| commit | f1316e313de5c5286b279cec6ed320cba3eb506f (patch) | |
| tree | c1796e865548eca9bdbd0b7f4bd9fae864e41f71 /CMakeLists.txt | |
| parent | a162dd2e3be16ff9cd56f80f09f83c4b4b7bc959 (diff) | |
| download | dynamic-extension-f1316e313de5c5286b279cec6ed320cba3eb506f.tar.gz | |
Average version of mixed-workload bench
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index e053367..3faa60b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -311,6 +311,12 @@ if (tail_bench) target_link_libraries(mixed_workload PUBLIC gsl pthread atomic) target_include_directories(mixed_workload PRIVATE include external external/m-tree/cpp external/PGM-index/include external/PLEX/include benchmarks/include external/psudb-common/cpp/include) target_link_options(mixed_workload PUBLIC -mcx16) + + + add_executable(mixed_workload_average ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/tail-latency/mixed_workload_average.cpp) + target_link_libraries(mixed_workload_average PUBLIC gsl pthread atomic) + target_include_directories(mixed_workload_average PRIVATE include external external/m-tree/cpp external/PGM-index/include external/PLEX/include benchmarks/include external/psudb-common/cpp/include) + target_link_options(mixed_workload_average PUBLIC -mcx16) endif() if (bench) |