summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorarcadia-devtools <[email protected]>2022-06-01 19:39:37 +0300
committerarcadia-devtools <[email protected]>2022-06-01 19:39:37 +0300
commit99fca73a0675152ed88aab094d59e84e0789715d (patch)
tree1e2ed67a7773e90ac63025cbe49f3491fa3098c3
parentadef74076d4daf7d6eecf0d25f61a5a6a4e05c38 (diff)
intermediate changes
ref:92c37846cff40718ed69273194a02776aa72f499
-rw-r--r--CMakeLists.darwin.txt2
-rw-r--r--CMakeLists.linux.txt2
-rw-r--r--library/cpp/yt/malloc/CMakeLists.txt17
-rw-r--r--library/cpp/yt/small_containers/CMakeLists.txt16
-rw-r--r--library/cpp/yt/string/CMakeLists.txt1
5 files changed, 38 insertions, 0 deletions
diff --git a/CMakeLists.darwin.txt b/CMakeLists.darwin.txt
index 1188e96401b..c002e92ed2c 100644
--- a/CMakeLists.darwin.txt
+++ b/CMakeLists.darwin.txt
@@ -37,6 +37,8 @@ add_subdirectory(library/cpp/yt/yson_string)
add_subdirectory(library/cpp/yt/assert)
add_subdirectory(library/cpp/yt/coding)
add_subdirectory(library/cpp/yt/string)
+add_subdirectory(library/cpp/yt/small_containers)
+add_subdirectory(library/cpp/yt/malloc)
add_subdirectory(library/cpp/yt/memory)
add_subdirectory(library/cpp/ytalloc/api)
add_subdirectory(ydb/library/yql/public/udf)
diff --git a/CMakeLists.linux.txt b/CMakeLists.linux.txt
index d225765cbd9..58a3e1a1326 100644
--- a/CMakeLists.linux.txt
+++ b/CMakeLists.linux.txt
@@ -114,6 +114,8 @@ add_subdirectory(library/cpp/yt/yson_string)
add_subdirectory(library/cpp/yt/assert)
add_subdirectory(library/cpp/yt/coding)
add_subdirectory(library/cpp/yt/string)
+add_subdirectory(library/cpp/yt/small_containers)
+add_subdirectory(library/cpp/yt/malloc)
add_subdirectory(library/cpp/yt/memory)
add_subdirectory(library/cpp/ytalloc/api)
add_subdirectory(ydb/library/yql/public/udf)
diff --git a/library/cpp/yt/malloc/CMakeLists.txt b/library/cpp/yt/malloc/CMakeLists.txt
new file mode 100644
index 00000000000..ead9e4e1e45
--- /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 00000000000..241d46e2b99
--- /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 44d008313e1..757c10151f9 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