summaryrefslogtreecommitdiffstats
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorDouglas Rumbaugh <dbr4@psu.edu>2023-06-13 14:48:19 -0400
committerDouglas Rumbaugh <dbr4@psu.edu>2023-06-13 14:48:19 -0400
commitf3211dfa5fabf30ed31ca67c23e0abb13bf9f5c5 (patch)
treefd49b33f9e0dfc0c539bc79b3a429141dd643609 /CMakeLists.txt
parent0e8d1ef77ad8db2b2491ae92874eb21b7986d59b (diff)
downloaddynamic-extension-f3211dfa5fabf30ed31ca67c23e0abb13bf9f5c5.tar.gz
Triespline Range Query benchmark
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 864a3f4..70dffdf 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -93,4 +93,8 @@ if (bench)
target_compile_options(alias_wss_bench PUBLIC -fopenmp)
+ add_executable(triespline_rq_bench ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/triespline_rq_bench.cpp)
+ target_link_libraries(triespline_rq_bench PUBLIC gsl pthread gomp)
+ target_include_directories(triespline_rq_bench PRIVATE include external/PGM-index/include external/PLEX/include bench/include)
+ target_compile_options(triespline_rq_bench PUBLIC -fopenmp)
endif()