summaryrefslogtreecommitdiffstats
path: root/CMakeLists.txt
diff options
context:
space:
mode:
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()