summaryrefslogtreecommitdiffstats
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorDouglas Rumbaugh <dbr4@psu.edu>2024-05-10 18:35:30 -0400
committerDouglas Rumbaugh <dbr4@psu.edu>2024-05-10 18:35:30 -0400
commitab0ab297959fcca370e80670e17f90a780607a80 (patch)
tree3cef8050bee568b6a7c003fafe6bfa5c29accbd7 /CMakeLists.txt
parent5401f2de7621db94971f23aecd9ee5110d7de268 (diff)
downloaddynamic-extension-ab0ab297959fcca370e80670e17f90a780607a80.tar.gz
MTree structure size
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 7f2e782..9b65b8b 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -259,6 +259,12 @@ if (vldb_bench)
target_include_directories(mtree_bench_alt PRIVATE include external external/m-tree/cpp external/PGM-index/include external/PLEX/include benchmarks/include external/psudb-common/cpp/include)
target_link_options(mtree_bench_alt PUBLIC -mcx16)
target_compile_options(mtree_bench_alt PUBLIC -fopenmp)
+
+ add_executable(mtree_bench ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/vldb/mtree_bench.cpp)
+ target_link_libraries(mtree_bench PUBLIC gsl pthread atomic gomp)
+ target_include_directories(mtree_bench PRIVATE include external external/m-tree/cpp external/PGM-index/include external/PLEX/include benchmarks/include external/psudb-common/cpp/include)
+ target_link_options(mtree_bench PUBLIC -mcx16)
+ target_compile_options(mtree_bench PUBLIC -fopenmp)
endif()