diff options
author | Determinant <[email protected]> | 2018-10-04 18:30:23 -0400 |
---|---|---|
committer | Determinant <[email protected]> | 2018-10-04 18:30:23 -0400 |
commit | 2b584edbddc782b6436a8e28d4f8b85a11f528a6 (patch) | |
tree | 364aa1067c95976c390b61a260ecbb39d4ff6555 /test/CMakeLists.txt | |
parent | 0eea9ddc7cfb2820295dd87aed3dc911a100ecde (diff) |
add lock-free queue impl and event-driven queue
Diffstat (limited to 'test/CMakeLists.txt')
-rw-r--r-- | test/CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 9689df3..44c984d 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -29,5 +29,8 @@ target_link_libraries(test_bits salticidae_static) add_executable(test_network test_network.cpp) target_link_libraries(test_network salticidae_static) +add_executable(test_queue test_queue.cpp) +target_link_libraries(test_queue salticidae_static pthread) + add_executable(bench_network bench_network.cpp) target_link_libraries(bench_network salticidae_static pthread) |