diff options
| author | Douglas Rumbaugh <dbr4@psu.edu> | 2023-06-13 14:48:19 -0400 |
|---|---|---|
| committer | Douglas Rumbaugh <dbr4@psu.edu> | 2023-06-13 14:48:19 -0400 |
| commit | f3211dfa5fabf30ed31ca67c23e0abb13bf9f5c5 (patch) | |
| tree | fd49b33f9e0dfc0c539bc79b3a429141dd643609 /CMakeLists.txt | |
| parent | 0e8d1ef77ad8db2b2491ae92874eb21b7986d59b (diff) | |
| download | dynamic-extension-f3211dfa5fabf30ed31ca67c23e0abb13bf9f5c5.tar.gz | |
Triespline Range Query benchmark
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 4 |
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() |