summaryrefslogtreecommitdiffstats
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorDouglas Rumbaugh <dbr4@psu.edu>2023-12-13 12:40:16 -0500
committerDouglas Rumbaugh <dbr4@psu.edu>2023-12-13 12:40:16 -0500
commit2f5bab07e5f151f26ef07478a4f251feaeeb0d26 (patch)
tree08f29895abd1cfb32e899f2e6cb12290e930007f /CMakeLists.txt
parent3c127eda69295cb306739bdd3c5ddccff6026a8d (diff)
downloaddynamic-extension-2f5bab07e5f151f26ef07478a4f251feaeeb0d26.tar.gz
Query throughput benchmark
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 5ffbdb4..6c733f2 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -88,6 +88,11 @@ if (bench)
target_link_libraries(insertion_tput PUBLIC gsl pthread gomp)
target_include_directories(insertion_tput PRIVATE include external external/m-tree/cpp external/PGM-index/include external/PLEX/include bench/include external/psudb-common/cpp/include)
target_compile_options(insertion_tput PUBLIC -fopenmp)
+
+ add_executable(insert_query_tput ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/insert_query_tput.cpp)
+ target_link_libraries(insert_query_tput PUBLIC gsl pthread gomp)
+ target_include_directories(insert_query_tput PRIVATE include external external/m-tree/cpp external/PGM-index/include external/PLEX/include bench/include external/psudb-common/cpp/include)
+ target_compile_options(insert_query_tput PUBLIC -fopenmp)
endif()
if (old_bench)