diff options
| author | Douglas Rumbaugh <dbr4@psu.edu> | 2023-06-07 10:26:24 -0400 |
|---|---|---|
| committer | Douglas Rumbaugh <dbr4@psu.edu> | 2023-06-07 10:26:24 -0400 |
| commit | aa5832f5e1bf7fcbd0a9507677a650b5e749ef46 (patch) | |
| tree | 9416c3698579f0340da3643d14745f28102e7e62 /CMakeLists.txt | |
| parent | d47eeea719448f649e93b6a9ec7593b4cb2fb40e (diff) | |
| download | dynamic-extension-aa5832f5e1bf7fcbd0a9507677a650b5e749ef46.tar.gz | |
Sampling benchmark
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index fc41db3..2fd2107 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,7 @@ set(CMAKE_CXX_STANDARD_REQUIRED True) set(namespace "de") project("Practical Dynamic Extension" VERSION 0.1.0) -set(debug true) +set(debug false) set(tests True) set(bench True) @@ -70,4 +70,9 @@ endif() if (bench) set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/bin/benchmarks") + add_executable(sampling_tput ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/sampling_tput.cpp) + target_link_libraries(sampling_tput PUBLIC gsl pthread) + target_include_directories(sampling_tput PRIVATE include) + + endif() |