From e8f1b85d7441a09fa30f27c720e5dff4f2b1aa71 Mon Sep 17 00:00:00 2001 From: Dennis Brentjes Date: Sun, 10 Jun 2018 14:24:29 +0200 Subject: Adds a microbenchmark executable. --- microbench/CMakeLists.txt | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 microbench/CMakeLists.txt (limited to 'microbench/CMakeLists.txt') diff --git a/microbench/CMakeLists.txt b/microbench/CMakeLists.txt new file mode 100644 index 0000000..a132ecf --- /dev/null +++ b/microbench/CMakeLists.txt @@ -0,0 +1,18 @@ + +find_package(Gcrypt REQUIRED) +find_package(Boost COMPONENTS timer REQUIRED) + +add_executable(microbench + microbench.cpp +) + +target_compile_options(scratchpad + PRIVATE ${Gcrypt_CFLAGS} +) + +target_link_libraries(microbench + PRIVATE cmix + PRIVATE cmix-crypto + PRIVATE ${Gcrypt_LIBRARIES} + PRIVATE Boost::timer +) -- cgit v1.2.3-70-g09d2