aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/threading/queue/CMakeLists.txt
blob: 3404cae98261df31fe413bf166eddf5d8ebace4d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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
)