diff options
author | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-06-01 19:39:37 +0300 |
---|---|---|
committer | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-06-01 19:39:37 +0300 |
commit | 99fca73a0675152ed88aab094d59e84e0789715d (patch) | |
tree | 1e2ed67a7773e90ac63025cbe49f3491fa3098c3 /library/cpp | |
parent | adef74076d4daf7d6eecf0d25f61a5a6a4e05c38 (diff) | |
download | ydb-99fca73a0675152ed88aab094d59e84e0789715d.tar.gz |
intermediate changes
ref:92c37846cff40718ed69273194a02776aa72f499
Diffstat (limited to 'library/cpp')
-rw-r--r-- | library/cpp/yt/malloc/CMakeLists.txt | 17 | ||||
-rw-r--r-- | library/cpp/yt/small_containers/CMakeLists.txt | 16 | ||||
-rw-r--r-- | library/cpp/yt/string/CMakeLists.txt | 1 |
3 files changed, 34 insertions, 0 deletions
diff --git a/library/cpp/yt/malloc/CMakeLists.txt b/library/cpp/yt/malloc/CMakeLists.txt new file mode 100644 index 0000000000..ead9e4e1e4 --- /dev/null +++ b/library/cpp/yt/malloc/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-yt-malloc) +target_link_libraries(cpp-yt-malloc PUBLIC + contrib-libs-cxxsupp + yutil +) +target_sources(cpp-yt-malloc PRIVATE + ${CMAKE_SOURCE_DIR}/library/cpp/yt/malloc/malloc.cpp +) diff --git a/library/cpp/yt/small_containers/CMakeLists.txt b/library/cpp/yt/small_containers/CMakeLists.txt new file mode 100644 index 0000000000..241d46e2b9 --- /dev/null +++ b/library/cpp/yt/small_containers/CMakeLists.txt @@ -0,0 +1,16 @@ + +# 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-yt-small_containers INTERFACE) +target_link_libraries(cpp-yt-small_containers INTERFACE + contrib-libs-cxxsupp + yutil + cpp-yt-assert + cpp-yt-malloc +) diff --git a/library/cpp/yt/string/CMakeLists.txt b/library/cpp/yt/string/CMakeLists.txt index 44d008313e..757c10151f 100644 --- a/library/cpp/yt/string/CMakeLists.txt +++ b/library/cpp/yt/string/CMakeLists.txt @@ -14,6 +14,7 @@ target_link_libraries(cpp-yt-string PUBLIC cpp-yt-assert cpp-yt-exception cpp-yt-misc + cpp-yt-small_containers ) target_sources(cpp-yt-string PRIVATE ${CMAKE_SOURCE_DIR}/library/cpp/yt/string/enum.cpp |