From b4cb34dfb2619f594d82e512fd9ff7fc97400133 Mon Sep 17 00:00:00 2001 From: arcadia-devtools Date: Fri, 18 Feb 2022 15:49:59 +0300 Subject: intermediate changes ref:1a0585d83f27cb6fb5b9c4f68a08177e10faf3b3 --- library/cpp/threading/queue/CMakeLists.txt | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 library/cpp/threading/queue/CMakeLists.txt (limited to 'library/cpp/threading/queue') diff --git a/library/cpp/threading/queue/CMakeLists.txt b/library/cpp/threading/queue/CMakeLists.txt new file mode 100644 index 00000000000..3404cae9826 --- /dev/null +++ b/library/cpp/threading/queue/CMakeLists.txt @@ -0,0 +1,12 @@ +add_library(cpp-threading-queue) +target_link_libraries(cpp-threading-queue PUBLIC + contrib-libs-cxxsupp + yutil +) +target_sources(cpp-threading-queue PRIVATE + ${CMAKE_SOURCE_DIR}/library/cpp/threading/queue/mpmc_unordered_ring.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/threading/queue/mpsc_htswap.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/threading/queue/mpsc_intrusive_unordered.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/threading/queue/mpsc_read_as_filled.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/threading/queue/mpsc_vinfarr_obstructive.cpp +) -- cgit v1.3