diff options
author | Determinant <[email protected]> | 2018-09-10 16:06:27 -0400 |
---|---|---|
committer | Determinant <[email protected]> | 2018-09-10 16:06:27 -0400 |
commit | 6261c95184b86c43755071b351e6928f89e2343c (patch) | |
tree | 7a33a5d8ad3b252f629d52c5183eab90efb3438a /test/CMakeLists.txt | |
parent | 05f2c56b909a2cd05a200ad663001696e4a23261 (diff) |
finish simple multithreaded verifier
Diffstat (limited to 'test/CMakeLists.txt')
-rw-r--r-- | test/CMakeLists.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 9e44cbe..e4c7a1b 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -1,4 +1,9 @@ include_directories(../src/ - ../salticidae/include/) + ../salticidae/include/ + ../) + add_executable(test_secp256k1 test_secp256k1.cpp) target_link_libraries(test_secp256k1 hotstuff_static) + +add_executable(test_concurrent_queue test_concurrent_queue.cpp) +target_link_libraries(test_concurrent_queue salticidae_static pthread) |