aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/yt
diff options
context:
space:
mode:
authorpnv1 <pnv1@yandex-team.ru>2022-03-01 16:39:56 +0300
committerpnv1 <pnv1@yandex-team.ru>2022-03-01 16:39:56 +0300
commite28946633ffe99ca801c9ce9a8e835e796a20c12 (patch)
tree6abf6146e14ca9d23c1ef74dd11da0123a225da3 /library/cpp/yt
parent2abfb07de63eed20a0745f07e169c651aceaca0f (diff)
downloadydb-e28946633ffe99ca801c9ce9a8e835e796a20c12.tar.gz
Improve SystemCommand check in YDB CLI, KIKIMR-14321
ref:fe5ed49138dce046a93c364cc8879fad3abf3eef
Diffstat (limited to 'library/cpp/yt')
-rw-r--r--library/cpp/yt/assert/CMakeLists.txt9
-rw-r--r--library/cpp/yt/coding/CMakeLists.txt9
-rw-r--r--library/cpp/yt/exception/CMakeLists.txt9
-rw-r--r--library/cpp/yt/memory/CMakeLists.txt9
-rw-r--r--library/cpp/yt/misc/CMakeLists.txt9
-rw-r--r--library/cpp/yt/string/CMakeLists.txt9
-rw-r--r--library/cpp/yt/yson/CMakeLists.txt9
-rw-r--r--library/cpp/yt/yson_string/CMakeLists.txt9
8 files changed, 72 insertions, 0 deletions
diff --git a/library/cpp/yt/assert/CMakeLists.txt b/library/cpp/yt/assert/CMakeLists.txt
index b54c8c6016..8ca8806a6b 100644
--- a/library/cpp/yt/assert/CMakeLists.txt
+++ b/library/cpp/yt/assert/CMakeLists.txt
@@ -1,3 +1,12 @@
+
+# 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-assert)
target_link_libraries(cpp-yt-assert PUBLIC
contrib-libs-cxxsupp
diff --git a/library/cpp/yt/coding/CMakeLists.txt b/library/cpp/yt/coding/CMakeLists.txt
index 6313fcdc36..0bd06ca740 100644
--- a/library/cpp/yt/coding/CMakeLists.txt
+++ b/library/cpp/yt/coding/CMakeLists.txt
@@ -1,3 +1,12 @@
+
+# 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-coding INTERFACE)
target_link_libraries(cpp-yt-coding INTERFACE
contrib-libs-cxxsupp
diff --git a/library/cpp/yt/exception/CMakeLists.txt b/library/cpp/yt/exception/CMakeLists.txt
index 26ead463a0..591a7a21d1 100644
--- a/library/cpp/yt/exception/CMakeLists.txt
+++ b/library/cpp/yt/exception/CMakeLists.txt
@@ -1,3 +1,12 @@
+
+# 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-exception)
target_link_libraries(cpp-yt-exception PUBLIC
contrib-libs-cxxsupp
diff --git a/library/cpp/yt/memory/CMakeLists.txt b/library/cpp/yt/memory/CMakeLists.txt
index ef15eea6fd..873bd56ae9 100644
--- a/library/cpp/yt/memory/CMakeLists.txt
+++ b/library/cpp/yt/memory/CMakeLists.txt
@@ -1,3 +1,12 @@
+
+# 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-memory)
target_link_libraries(cpp-yt-memory PUBLIC
contrib-libs-cxxsupp
diff --git a/library/cpp/yt/misc/CMakeLists.txt b/library/cpp/yt/misc/CMakeLists.txt
index cccaef7540..c3eb8aa025 100644
--- a/library/cpp/yt/misc/CMakeLists.txt
+++ b/library/cpp/yt/misc/CMakeLists.txt
@@ -1,3 +1,12 @@
+
+# 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-misc)
target_link_libraries(cpp-yt-misc PUBLIC
contrib-libs-cxxsupp
diff --git a/library/cpp/yt/string/CMakeLists.txt b/library/cpp/yt/string/CMakeLists.txt
index d26e6e35be..44d008313e 100644
--- a/library/cpp/yt/string/CMakeLists.txt
+++ b/library/cpp/yt/string/CMakeLists.txt
@@ -1,3 +1,12 @@
+
+# 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-string)
target_link_libraries(cpp-yt-string PUBLIC
contrib-libs-cxxsupp
diff --git a/library/cpp/yt/yson/CMakeLists.txt b/library/cpp/yt/yson/CMakeLists.txt
index 932a649365..b4d5d72a0b 100644
--- a/library/cpp/yt/yson/CMakeLists.txt
+++ b/library/cpp/yt/yson/CMakeLists.txt
@@ -1,3 +1,12 @@
+
+# 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-yson)
target_link_libraries(cpp-yt-yson PUBLIC
contrib-libs-cxxsupp
diff --git a/library/cpp/yt/yson_string/CMakeLists.txt b/library/cpp/yt/yson_string/CMakeLists.txt
index f99bb3d9b2..d2938dc9a3 100644
--- a/library/cpp/yt/yson_string/CMakeLists.txt
+++ b/library/cpp/yt/yson_string/CMakeLists.txt
@@ -1,3 +1,12 @@
+
+# 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-yson_string)
target_link_libraries(cpp-yt-yson_string PUBLIC
contrib-libs-cxxsupp