summaryrefslogtreecommitdiffstats
path: root/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt27
1 files changed, 16 insertions, 11 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 902889f..fafc9bb 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -9,11 +9,11 @@ set(CMAKE_CXX_STANDARD_REQUIRED True)
set(namespace "de")
project("Practical Dynamic Extension" VERSION 0.1.0)
-set(debug true)
+set(debug false)
set(tests True)
set(bench false)
set(vldb_bench false)
-set(tail_bench false)
+set(tail_bench true)
# ALEX doesn't build under C++20
set(build_alex false)
@@ -286,15 +286,20 @@ if (vldb_bench)
endif()
if (tail_bench)
- add_executable(config_sweep ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/tail-latency/config_sweep.cpp)
- target_link_libraries(config_sweep PUBLIC gsl pthread atomic)
- target_include_directories(config_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(config_sweep PUBLIC -mcx16)
-
- add_executable(fixed_shard_count ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/tail-latency/fixed_shard_count.cpp)
- target_link_libraries(fixed_shard_count PUBLIC gsl pthread atomic)
- target_include_directories(fixed_shard_count PRIVATE include external external/m-tree/cpp external/PGM-index/include external/PLEX/include benchmarks/include external/psudb-common/cpp/include)
- target_link_options(fixed_shard_count PUBLIC -mcx16)
+ # add_executable(config_sweep ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/tail-latency/config_sweep.cpp)
+ # target_link_libraries(config_sweep PUBLIC gsl pthread atomic)
+ # target_include_directories(config_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(config_sweep PUBLIC -mcx16)
+
+ # add_executable(fixed_shard_count ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/tail-latency/fixed_shard_count.cpp)
+ # target_link_libraries(fixed_shard_count PUBLIC gsl pthread atomic)
+ # target_include_directories(fixed_shard_count PRIVATE include external external/m-tree/cpp external/PGM-index/include external/PLEX/include benchmarks/include external/psudb-common/cpp/include)
+ # target_link_options(fixed_shard_count PUBLIC -mcx16)
+
+ add_executable(standard_latency_dist ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/tail-latency/standard_latency_dist.cpp)
+ target_link_libraries(standard_latency_dist PUBLIC gsl pthread atomic)
+ target_include_directories(standard_latency_dist PRIVATE include external external/m-tree/cpp external/PGM-index/include external/PLEX/include benchmarks/include external/psudb-common/cpp/include)
+ target_link_options(standard_latency_dist PUBLIC -mcx16)
endif()
if (bench)