aboutsummaryrefslogtreecommitdiff
path: root/microbench/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'microbench/CMakeLists.txt')
-rw-r--r--microbench/CMakeLists.txt18
1 files changed, 18 insertions, 0 deletions
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
+)