summaryrefslogtreecommitdiffstats
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorDouglas Rumbaugh <dbr4@psu.edu>2023-06-26 10:26:48 -0400
committerDouglas Rumbaugh <dbr4@psu.edu>2023-06-26 10:26:48 -0400
commit9cddbef913eb62b6a11940cc8d7aff164e974ccb (patch)
tree23bee78f8f4751d08c296390fae391dd0538f831 /CMakeLists.txt
parent5b45c6523dfbd5611a907a5e121a1e3b41cc0c8d (diff)
downloaddynamic-extension-9cddbef913eb62b6a11940cc8d7aff164e974ccb.tar.gz
PGMRQ benchmark
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 70dffdf..dfdf812 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -92,9 +92,13 @@ if (bench)
target_include_directories(alias_wss_bench PRIVATE include external/PGM-index/include external/PLEX/include bench/include)
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)
+
+ add_executable(pgm_rq_bench ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/pgm_rq_bench.cpp)
+ target_link_libraries(pgm_rq_bench PUBLIC gsl pthread gomp)
+ target_include_directories(pgm_rq_bench PRIVATE include external/PGM-index/include external/PLEX/include bench/include)
+ target_compile_options(pgm_rq_bench PUBLIC -fopenmp)
endif()