diff options
| author | thegeorg <[email protected]> | 2022-06-01 13:17:36 +0300 | 
|---|---|---|
| committer | thegeorg <[email protected]> | 2022-06-01 13:17:36 +0300 | 
| commit | 3087e92640f7488a160a24572ab02b0d8f55e1fc (patch) | |
| tree | 54b13f3038870cb96eefa5895d12f8c702f86bc8 | |
| parent | d213481284ba86b86427ea71d86db46874b074c7 (diff) | |
library: Flatten RECURSEs in threading and string_utils (plus a bit)
ref:3934a44b97bc723b4d2e7fe840465e2ab1843aaf
| -rw-r--r-- | CMakeLists.darwin.txt | 1 | ||||
| -rw-r--r-- | CMakeLists.linux.txt | 1 | ||||
| -rw-r--r-- | library/cpp/threading/atomic/CMakeLists.txt | 17 | ||||
| -rw-r--r-- | ydb/library/yql/providers/common/token_accessor/client/CMakeLists.txt | 1 | 
4 files changed, 20 insertions, 0 deletions
diff --git a/CMakeLists.darwin.txt b/CMakeLists.darwin.txt index a277247c229..2dd7d154024 100644 --- a/CMakeLists.darwin.txt +++ b/CMakeLists.darwin.txt @@ -648,6 +648,7 @@ add_subdirectory(ydb/library/yql/core/services/mounts)  add_subdirectory(ydb/library/yql/core/user_data)  add_subdirectory(ydb/library/yql/utils/actors)  add_subdirectory(ydb/library/yql/providers/common/token_accessor/client) +add_subdirectory(library/cpp/threading/atomic)  add_subdirectory(ydb/library/yql/providers/common/structured_token)  add_subdirectory(ydb/library/yql/providers/common/token_accessor/grpc)  add_subdirectory(ydb/library/yql/providers/solomon/proto) diff --git a/CMakeLists.linux.txt b/CMakeLists.linux.txt index 606d542b775..3d6f27a4de4 100644 --- a/CMakeLists.linux.txt +++ b/CMakeLists.linux.txt @@ -728,6 +728,7 @@ add_subdirectory(ydb/library/yql/core/services/mounts)  add_subdirectory(ydb/library/yql/core/user_data)  add_subdirectory(ydb/library/yql/utils/actors)  add_subdirectory(ydb/library/yql/providers/common/token_accessor/client) +add_subdirectory(library/cpp/threading/atomic)  add_subdirectory(ydb/library/yql/providers/common/structured_token)  add_subdirectory(ydb/library/yql/providers/common/token_accessor/grpc)  add_subdirectory(ydb/library/yql/providers/solomon/proto) diff --git a/library/cpp/threading/atomic/CMakeLists.txt b/library/cpp/threading/atomic/CMakeLists.txt new file mode 100644 index 00000000000..782b2749481 --- /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 +) diff --git a/ydb/library/yql/providers/common/token_accessor/client/CMakeLists.txt b/ydb/library/yql/providers/common/token_accessor/client/CMakeLists.txt index e9d30495ede..3be3c2207c9 100644 --- a/ydb/library/yql/providers/common/token_accessor/client/CMakeLists.txt +++ b/ydb/library/yql/providers/common/token_accessor/client/CMakeLists.txt @@ -12,6 +12,7 @@ target_link_libraries(common-token_accessor-client PUBLIC    contrib-libs-cxxsupp    yutil    cpp-grpc-client +  cpp-threading-atomic    cpp-threading-future    providers-common-structured_token    common-token_accessor-grpc  | 
