diff options
author | thegeorg <thegeorg@yandex-team.ru> | 2022-06-01 13:17:36 +0300 |
---|---|---|
committer | thegeorg <thegeorg@yandex-team.ru> | 2022-06-01 13:17:36 +0300 |
commit | 3087e92640f7488a160a24572ab02b0d8f55e1fc (patch) | |
tree | 54b13f3038870cb96eefa5895d12f8c702f86bc8 /library | |
parent | d213481284ba86b86427ea71d86db46874b074c7 (diff) | |
download | ydb-3087e92640f7488a160a24572ab02b0d8f55e1fc.tar.gz |
library: Flatten RECURSEs in threading and string_utils (plus a bit)
ref:3934a44b97bc723b4d2e7fe840465e2ab1843aaf
Diffstat (limited to 'library')
-rw-r--r-- | library/cpp/threading/atomic/CMakeLists.txt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/library/cpp/threading/atomic/CMakeLists.txt b/library/cpp/threading/atomic/CMakeLists.txt new file mode 100644 index 0000000000..782b274948 --- /dev/null +++ b/library/cpp/threading/atomic/CMakeLists.txt @@ -0,0 +1,17 @@ + +# This file was gererated by the build system used internally in the Yandex monorepo. +# Only simple modifications are allowed (adding source-files to targets, adding simple properties +# like target_include_directories). These modifications will be ported to original +# ya.make files by maintainers. Any complex modifications which can't be ported back to the +# original buildsystem will not be accepted. + + + +add_library(cpp-threading-atomic) +target_link_libraries(cpp-threading-atomic PUBLIC + contrib-libs-cxxsupp + yutil +) +target_sources(cpp-threading-atomic PRIVATE + ${CMAKE_SOURCE_DIR}/library/cpp/threading/atomic/bool.cpp +) |