diff options
| author | Dennis Brentjes <d.brentjes@gmail.com> | 2018-06-10 14:24:29 +0200 |
|---|---|---|
| committer | Dennis Brentjes <d.brentjes@gmail.com> | 2018-06-10 15:12:01 +0200 |
| commit | e8f1b85d7441a09fa30f27c720e5dff4f2b1aa71 (patch) | |
| tree | 766cb6124ad82d6c446b96bc51fe824a12ce401f /microbench/CMakeLists.txt | |
| parent | 4ae87e3ce2dd1ff326af38561740bd62315b51ba (diff) | |
| download | cmix-master.tar.gz cmix-master.tar.bz2 cmix-master.zip | |
Diffstat (limited to 'microbench/CMakeLists.txt')
| -rw-r--r-- | microbench/CMakeLists.txt | 18 |
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 +) |
