aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/streams
diff options
context:
space:
mode:
authorAlexSm <alex@ydb.tech>2024-02-16 17:36:07 +0100
committerGitHub <noreply@github.com>2024-02-16 17:36:07 +0100
commit6d3e410c4573ea9dca15ff7076cc9ab528f3c927 (patch)
tree9475a324a167de9bb2b7531a4a4102210436dc01 /library/cpp/streams
parent0491f751bf7179304be521251056d3cf10a88da2 (diff)
downloadydb-6d3e410c4573ea9dca15ff7076cc9ab528f3c927.tar.gz
Remove CMakeLists from main (#2032)
Diffstat (limited to 'library/cpp/streams')
-rw-r--r--library/cpp/streams/CMakeLists.txt14
-rw-r--r--library/cpp/streams/brotli/CMakeLists.darwin-arm64.txt19
-rw-r--r--library/cpp/streams/brotli/CMakeLists.darwin-x86_64.txt19
-rw-r--r--library/cpp/streams/brotli/CMakeLists.linux-aarch64.txt20
-rw-r--r--library/cpp/streams/brotli/CMakeLists.linux-x86_64.txt20
-rw-r--r--library/cpp/streams/brotli/CMakeLists.txt19
-rw-r--r--library/cpp/streams/brotli/CMakeLists.windows-x86_64.txt19
-rw-r--r--library/cpp/streams/bzip2/CMakeLists.darwin-arm64.txt18
-rw-r--r--library/cpp/streams/bzip2/CMakeLists.darwin-x86_64.txt18
-rw-r--r--library/cpp/streams/bzip2/CMakeLists.linux-aarch64.txt19
-rw-r--r--library/cpp/streams/bzip2/CMakeLists.linux-x86_64.txt19
-rw-r--r--library/cpp/streams/bzip2/CMakeLists.txt19
-rw-r--r--library/cpp/streams/bzip2/CMakeLists.windows-x86_64.txt18
-rw-r--r--library/cpp/streams/lzma/CMakeLists.darwin-arm64.txt18
-rw-r--r--library/cpp/streams/lzma/CMakeLists.darwin-x86_64.txt18
-rw-r--r--library/cpp/streams/lzma/CMakeLists.linux-aarch64.txt19
-rw-r--r--library/cpp/streams/lzma/CMakeLists.linux-x86_64.txt19
-rw-r--r--library/cpp/streams/lzma/CMakeLists.txt19
-rw-r--r--library/cpp/streams/lzma/CMakeLists.windows-x86_64.txt18
-rw-r--r--library/cpp/streams/xz/CMakeLists.darwin-arm64.txt18
-rw-r--r--library/cpp/streams/xz/CMakeLists.darwin-x86_64.txt18
-rw-r--r--library/cpp/streams/xz/CMakeLists.linux-aarch64.txt19
-rw-r--r--library/cpp/streams/xz/CMakeLists.linux-x86_64.txt19
-rw-r--r--library/cpp/streams/xz/CMakeLists.txt19
-rw-r--r--library/cpp/streams/xz/CMakeLists.windows-x86_64.txt18
-rw-r--r--library/cpp/streams/zc_memory_input/CMakeLists.darwin-arm64.txt17
-rw-r--r--library/cpp/streams/zc_memory_input/CMakeLists.darwin-x86_64.txt17
-rw-r--r--library/cpp/streams/zc_memory_input/CMakeLists.linux-aarch64.txt18
-rw-r--r--library/cpp/streams/zc_memory_input/CMakeLists.linux-x86_64.txt18
-rw-r--r--library/cpp/streams/zc_memory_input/CMakeLists.txt19
-rw-r--r--library/cpp/streams/zc_memory_input/CMakeLists.windows-x86_64.txt17
-rw-r--r--library/cpp/streams/zstd/CMakeLists.darwin-arm64.txt18
-rw-r--r--library/cpp/streams/zstd/CMakeLists.darwin-x86_64.txt18
-rw-r--r--library/cpp/streams/zstd/CMakeLists.linux-aarch64.txt19
-rw-r--r--library/cpp/streams/zstd/CMakeLists.linux-x86_64.txt19
-rw-r--r--library/cpp/streams/zstd/CMakeLists.txt19
-rw-r--r--library/cpp/streams/zstd/CMakeLists.windows-x86_64.txt18
37 files changed, 0 insertions, 680 deletions
diff --git a/library/cpp/streams/CMakeLists.txt b/library/cpp/streams/CMakeLists.txt
deleted file mode 100644
index ae7ffe11fc..0000000000
--- a/library/cpp/streams/CMakeLists.txt
+++ /dev/null
@@ -1,14 +0,0 @@
-
-# This file was generated 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_subdirectory(brotli)
-add_subdirectory(bzip2)
-add_subdirectory(lzma)
-add_subdirectory(xz)
-add_subdirectory(zc_memory_input)
-add_subdirectory(zstd)
diff --git a/library/cpp/streams/brotli/CMakeLists.darwin-arm64.txt b/library/cpp/streams/brotli/CMakeLists.darwin-arm64.txt
deleted file mode 100644
index 7102715952..0000000000
--- a/library/cpp/streams/brotli/CMakeLists.darwin-arm64.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-
-# This file was generated 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-streams-brotli)
-target_link_libraries(cpp-streams-brotli PUBLIC
- contrib-libs-cxxsupp
- yutil
- libs-brotli-enc
- libs-brotli-dec
-)
-target_sources(cpp-streams-brotli PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/streams/brotli/brotli.cpp
-)
diff --git a/library/cpp/streams/brotli/CMakeLists.darwin-x86_64.txt b/library/cpp/streams/brotli/CMakeLists.darwin-x86_64.txt
deleted file mode 100644
index 7102715952..0000000000
--- a/library/cpp/streams/brotli/CMakeLists.darwin-x86_64.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-
-# This file was generated 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-streams-brotli)
-target_link_libraries(cpp-streams-brotli PUBLIC
- contrib-libs-cxxsupp
- yutil
- libs-brotli-enc
- libs-brotli-dec
-)
-target_sources(cpp-streams-brotli PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/streams/brotli/brotli.cpp
-)
diff --git a/library/cpp/streams/brotli/CMakeLists.linux-aarch64.txt b/library/cpp/streams/brotli/CMakeLists.linux-aarch64.txt
deleted file mode 100644
index 37e5df6e79..0000000000
--- a/library/cpp/streams/brotli/CMakeLists.linux-aarch64.txt
+++ /dev/null
@@ -1,20 +0,0 @@
-
-# This file was generated 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-streams-brotli)
-target_link_libraries(cpp-streams-brotli PUBLIC
- contrib-libs-linux-headers
- contrib-libs-cxxsupp
- yutil
- libs-brotli-enc
- libs-brotli-dec
-)
-target_sources(cpp-streams-brotli PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/streams/brotli/brotli.cpp
-)
diff --git a/library/cpp/streams/brotli/CMakeLists.linux-x86_64.txt b/library/cpp/streams/brotli/CMakeLists.linux-x86_64.txt
deleted file mode 100644
index 37e5df6e79..0000000000
--- a/library/cpp/streams/brotli/CMakeLists.linux-x86_64.txt
+++ /dev/null
@@ -1,20 +0,0 @@
-
-# This file was generated 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-streams-brotli)
-target_link_libraries(cpp-streams-brotli PUBLIC
- contrib-libs-linux-headers
- contrib-libs-cxxsupp
- yutil
- libs-brotli-enc
- libs-brotli-dec
-)
-target_sources(cpp-streams-brotli PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/streams/brotli/brotli.cpp
-)
diff --git a/library/cpp/streams/brotli/CMakeLists.txt b/library/cpp/streams/brotli/CMakeLists.txt
deleted file mode 100644
index d863ebd180..0000000000
--- a/library/cpp/streams/brotli/CMakeLists.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-
-# This file was generated 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.
-
-
-if (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64" AND NOT HAVE_CUDA)
- include(CMakeLists.linux-x86_64.txt)
-elseif (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "aarch64" AND NOT HAVE_CUDA)
- include(CMakeLists.linux-aarch64.txt)
-elseif (CMAKE_SYSTEM_NAME STREQUAL "Darwin" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64")
- include(CMakeLists.darwin-x86_64.txt)
-elseif (CMAKE_SYSTEM_NAME STREQUAL "Darwin" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "arm64")
- include(CMakeLists.darwin-arm64.txt)
-elseif (WIN32 AND CMAKE_SYSTEM_PROCESSOR STREQUAL "AMD64" AND NOT HAVE_CUDA)
- include(CMakeLists.windows-x86_64.txt)
-endif()
diff --git a/library/cpp/streams/brotli/CMakeLists.windows-x86_64.txt b/library/cpp/streams/brotli/CMakeLists.windows-x86_64.txt
deleted file mode 100644
index 7102715952..0000000000
--- a/library/cpp/streams/brotli/CMakeLists.windows-x86_64.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-
-# This file was generated 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-streams-brotli)
-target_link_libraries(cpp-streams-brotli PUBLIC
- contrib-libs-cxxsupp
- yutil
- libs-brotli-enc
- libs-brotli-dec
-)
-target_sources(cpp-streams-brotli PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/streams/brotli/brotli.cpp
-)
diff --git a/library/cpp/streams/bzip2/CMakeLists.darwin-arm64.txt b/library/cpp/streams/bzip2/CMakeLists.darwin-arm64.txt
deleted file mode 100644
index 5afa320647..0000000000
--- a/library/cpp/streams/bzip2/CMakeLists.darwin-arm64.txt
+++ /dev/null
@@ -1,18 +0,0 @@
-
-# This file was generated 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-streams-bzip2)
-target_link_libraries(cpp-streams-bzip2 PUBLIC
- contrib-libs-cxxsupp
- yutil
- contrib-libs-libbz2
-)
-target_sources(cpp-streams-bzip2 PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/streams/bzip2/bzip2.cpp
-)
diff --git a/library/cpp/streams/bzip2/CMakeLists.darwin-x86_64.txt b/library/cpp/streams/bzip2/CMakeLists.darwin-x86_64.txt
deleted file mode 100644
index 5afa320647..0000000000
--- a/library/cpp/streams/bzip2/CMakeLists.darwin-x86_64.txt
+++ /dev/null
@@ -1,18 +0,0 @@
-
-# This file was generated 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-streams-bzip2)
-target_link_libraries(cpp-streams-bzip2 PUBLIC
- contrib-libs-cxxsupp
- yutil
- contrib-libs-libbz2
-)
-target_sources(cpp-streams-bzip2 PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/streams/bzip2/bzip2.cpp
-)
diff --git a/library/cpp/streams/bzip2/CMakeLists.linux-aarch64.txt b/library/cpp/streams/bzip2/CMakeLists.linux-aarch64.txt
deleted file mode 100644
index d8cfeb870f..0000000000
--- a/library/cpp/streams/bzip2/CMakeLists.linux-aarch64.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-
-# This file was generated 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-streams-bzip2)
-target_link_libraries(cpp-streams-bzip2 PUBLIC
- contrib-libs-linux-headers
- contrib-libs-cxxsupp
- yutil
- contrib-libs-libbz2
-)
-target_sources(cpp-streams-bzip2 PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/streams/bzip2/bzip2.cpp
-)
diff --git a/library/cpp/streams/bzip2/CMakeLists.linux-x86_64.txt b/library/cpp/streams/bzip2/CMakeLists.linux-x86_64.txt
deleted file mode 100644
index d8cfeb870f..0000000000
--- a/library/cpp/streams/bzip2/CMakeLists.linux-x86_64.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-
-# This file was generated 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-streams-bzip2)
-target_link_libraries(cpp-streams-bzip2 PUBLIC
- contrib-libs-linux-headers
- contrib-libs-cxxsupp
- yutil
- contrib-libs-libbz2
-)
-target_sources(cpp-streams-bzip2 PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/streams/bzip2/bzip2.cpp
-)
diff --git a/library/cpp/streams/bzip2/CMakeLists.txt b/library/cpp/streams/bzip2/CMakeLists.txt
deleted file mode 100644
index d863ebd180..0000000000
--- a/library/cpp/streams/bzip2/CMakeLists.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-
-# This file was generated 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.
-
-
-if (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64" AND NOT HAVE_CUDA)
- include(CMakeLists.linux-x86_64.txt)
-elseif (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "aarch64" AND NOT HAVE_CUDA)
- include(CMakeLists.linux-aarch64.txt)
-elseif (CMAKE_SYSTEM_NAME STREQUAL "Darwin" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64")
- include(CMakeLists.darwin-x86_64.txt)
-elseif (CMAKE_SYSTEM_NAME STREQUAL "Darwin" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "arm64")
- include(CMakeLists.darwin-arm64.txt)
-elseif (WIN32 AND CMAKE_SYSTEM_PROCESSOR STREQUAL "AMD64" AND NOT HAVE_CUDA)
- include(CMakeLists.windows-x86_64.txt)
-endif()
diff --git a/library/cpp/streams/bzip2/CMakeLists.windows-x86_64.txt b/library/cpp/streams/bzip2/CMakeLists.windows-x86_64.txt
deleted file mode 100644
index 5afa320647..0000000000
--- a/library/cpp/streams/bzip2/CMakeLists.windows-x86_64.txt
+++ /dev/null
@@ -1,18 +0,0 @@
-
-# This file was generated 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-streams-bzip2)
-target_link_libraries(cpp-streams-bzip2 PUBLIC
- contrib-libs-cxxsupp
- yutil
- contrib-libs-libbz2
-)
-target_sources(cpp-streams-bzip2 PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/streams/bzip2/bzip2.cpp
-)
diff --git a/library/cpp/streams/lzma/CMakeLists.darwin-arm64.txt b/library/cpp/streams/lzma/CMakeLists.darwin-arm64.txt
deleted file mode 100644
index 3e5c652aee..0000000000
--- a/library/cpp/streams/lzma/CMakeLists.darwin-arm64.txt
+++ /dev/null
@@ -1,18 +0,0 @@
-
-# This file was generated 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-streams-lzma)
-target_link_libraries(cpp-streams-lzma PUBLIC
- contrib-libs-cxxsupp
- yutil
- contrib-libs-lzmasdk
-)
-target_sources(cpp-streams-lzma PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/streams/lzma/lzma.cpp
-)
diff --git a/library/cpp/streams/lzma/CMakeLists.darwin-x86_64.txt b/library/cpp/streams/lzma/CMakeLists.darwin-x86_64.txt
deleted file mode 100644
index 3e5c652aee..0000000000
--- a/library/cpp/streams/lzma/CMakeLists.darwin-x86_64.txt
+++ /dev/null
@@ -1,18 +0,0 @@
-
-# This file was generated 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-streams-lzma)
-target_link_libraries(cpp-streams-lzma PUBLIC
- contrib-libs-cxxsupp
- yutil
- contrib-libs-lzmasdk
-)
-target_sources(cpp-streams-lzma PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/streams/lzma/lzma.cpp
-)
diff --git a/library/cpp/streams/lzma/CMakeLists.linux-aarch64.txt b/library/cpp/streams/lzma/CMakeLists.linux-aarch64.txt
deleted file mode 100644
index 3893a3ea8b..0000000000
--- a/library/cpp/streams/lzma/CMakeLists.linux-aarch64.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-
-# This file was generated 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-streams-lzma)
-target_link_libraries(cpp-streams-lzma PUBLIC
- contrib-libs-linux-headers
- contrib-libs-cxxsupp
- yutil
- contrib-libs-lzmasdk
-)
-target_sources(cpp-streams-lzma PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/streams/lzma/lzma.cpp
-)
diff --git a/library/cpp/streams/lzma/CMakeLists.linux-x86_64.txt b/library/cpp/streams/lzma/CMakeLists.linux-x86_64.txt
deleted file mode 100644
index 3893a3ea8b..0000000000
--- a/library/cpp/streams/lzma/CMakeLists.linux-x86_64.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-
-# This file was generated 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-streams-lzma)
-target_link_libraries(cpp-streams-lzma PUBLIC
- contrib-libs-linux-headers
- contrib-libs-cxxsupp
- yutil
- contrib-libs-lzmasdk
-)
-target_sources(cpp-streams-lzma PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/streams/lzma/lzma.cpp
-)
diff --git a/library/cpp/streams/lzma/CMakeLists.txt b/library/cpp/streams/lzma/CMakeLists.txt
deleted file mode 100644
index d863ebd180..0000000000
--- a/library/cpp/streams/lzma/CMakeLists.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-
-# This file was generated 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.
-
-
-if (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64" AND NOT HAVE_CUDA)
- include(CMakeLists.linux-x86_64.txt)
-elseif (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "aarch64" AND NOT HAVE_CUDA)
- include(CMakeLists.linux-aarch64.txt)
-elseif (CMAKE_SYSTEM_NAME STREQUAL "Darwin" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64")
- include(CMakeLists.darwin-x86_64.txt)
-elseif (CMAKE_SYSTEM_NAME STREQUAL "Darwin" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "arm64")
- include(CMakeLists.darwin-arm64.txt)
-elseif (WIN32 AND CMAKE_SYSTEM_PROCESSOR STREQUAL "AMD64" AND NOT HAVE_CUDA)
- include(CMakeLists.windows-x86_64.txt)
-endif()
diff --git a/library/cpp/streams/lzma/CMakeLists.windows-x86_64.txt b/library/cpp/streams/lzma/CMakeLists.windows-x86_64.txt
deleted file mode 100644
index 3e5c652aee..0000000000
--- a/library/cpp/streams/lzma/CMakeLists.windows-x86_64.txt
+++ /dev/null
@@ -1,18 +0,0 @@
-
-# This file was generated 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-streams-lzma)
-target_link_libraries(cpp-streams-lzma PUBLIC
- contrib-libs-cxxsupp
- yutil
- contrib-libs-lzmasdk
-)
-target_sources(cpp-streams-lzma PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/streams/lzma/lzma.cpp
-)
diff --git a/library/cpp/streams/xz/CMakeLists.darwin-arm64.txt b/library/cpp/streams/xz/CMakeLists.darwin-arm64.txt
deleted file mode 100644
index 30f9d34444..0000000000
--- a/library/cpp/streams/xz/CMakeLists.darwin-arm64.txt
+++ /dev/null
@@ -1,18 +0,0 @@
-
-# This file was generated 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-streams-xz)
-target_link_libraries(cpp-streams-xz PUBLIC
- contrib-libs-cxxsupp
- yutil
- contrib-libs-lzma
-)
-target_sources(cpp-streams-xz PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/streams/xz/decompress.cpp
-)
diff --git a/library/cpp/streams/xz/CMakeLists.darwin-x86_64.txt b/library/cpp/streams/xz/CMakeLists.darwin-x86_64.txt
deleted file mode 100644
index 30f9d34444..0000000000
--- a/library/cpp/streams/xz/CMakeLists.darwin-x86_64.txt
+++ /dev/null
@@ -1,18 +0,0 @@
-
-# This file was generated 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-streams-xz)
-target_link_libraries(cpp-streams-xz PUBLIC
- contrib-libs-cxxsupp
- yutil
- contrib-libs-lzma
-)
-target_sources(cpp-streams-xz PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/streams/xz/decompress.cpp
-)
diff --git a/library/cpp/streams/xz/CMakeLists.linux-aarch64.txt b/library/cpp/streams/xz/CMakeLists.linux-aarch64.txt
deleted file mode 100644
index b7f0ce1cb8..0000000000
--- a/library/cpp/streams/xz/CMakeLists.linux-aarch64.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-
-# This file was generated 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-streams-xz)
-target_link_libraries(cpp-streams-xz PUBLIC
- contrib-libs-linux-headers
- contrib-libs-cxxsupp
- yutil
- contrib-libs-lzma
-)
-target_sources(cpp-streams-xz PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/streams/xz/decompress.cpp
-)
diff --git a/library/cpp/streams/xz/CMakeLists.linux-x86_64.txt b/library/cpp/streams/xz/CMakeLists.linux-x86_64.txt
deleted file mode 100644
index b7f0ce1cb8..0000000000
--- a/library/cpp/streams/xz/CMakeLists.linux-x86_64.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-
-# This file was generated 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-streams-xz)
-target_link_libraries(cpp-streams-xz PUBLIC
- contrib-libs-linux-headers
- contrib-libs-cxxsupp
- yutil
- contrib-libs-lzma
-)
-target_sources(cpp-streams-xz PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/streams/xz/decompress.cpp
-)
diff --git a/library/cpp/streams/xz/CMakeLists.txt b/library/cpp/streams/xz/CMakeLists.txt
deleted file mode 100644
index d863ebd180..0000000000
--- a/library/cpp/streams/xz/CMakeLists.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-
-# This file was generated 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.
-
-
-if (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64" AND NOT HAVE_CUDA)
- include(CMakeLists.linux-x86_64.txt)
-elseif (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "aarch64" AND NOT HAVE_CUDA)
- include(CMakeLists.linux-aarch64.txt)
-elseif (CMAKE_SYSTEM_NAME STREQUAL "Darwin" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64")
- include(CMakeLists.darwin-x86_64.txt)
-elseif (CMAKE_SYSTEM_NAME STREQUAL "Darwin" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "arm64")
- include(CMakeLists.darwin-arm64.txt)
-elseif (WIN32 AND CMAKE_SYSTEM_PROCESSOR STREQUAL "AMD64" AND NOT HAVE_CUDA)
- include(CMakeLists.windows-x86_64.txt)
-endif()
diff --git a/library/cpp/streams/xz/CMakeLists.windows-x86_64.txt b/library/cpp/streams/xz/CMakeLists.windows-x86_64.txt
deleted file mode 100644
index 30f9d34444..0000000000
--- a/library/cpp/streams/xz/CMakeLists.windows-x86_64.txt
+++ /dev/null
@@ -1,18 +0,0 @@
-
-# This file was generated 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-streams-xz)
-target_link_libraries(cpp-streams-xz PUBLIC
- contrib-libs-cxxsupp
- yutil
- contrib-libs-lzma
-)
-target_sources(cpp-streams-xz PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/streams/xz/decompress.cpp
-)
diff --git a/library/cpp/streams/zc_memory_input/CMakeLists.darwin-arm64.txt b/library/cpp/streams/zc_memory_input/CMakeLists.darwin-arm64.txt
deleted file mode 100644
index e0ddfec96c..0000000000
--- a/library/cpp/streams/zc_memory_input/CMakeLists.darwin-arm64.txt
+++ /dev/null
@@ -1,17 +0,0 @@
-
-# This file was generated 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-streams-zc_memory_input)
-target_link_libraries(cpp-streams-zc_memory_input PUBLIC
- contrib-libs-cxxsupp
- yutil
-)
-target_sources(cpp-streams-zc_memory_input PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/streams/zc_memory_input/zc_memory_input.cpp
-)
diff --git a/library/cpp/streams/zc_memory_input/CMakeLists.darwin-x86_64.txt b/library/cpp/streams/zc_memory_input/CMakeLists.darwin-x86_64.txt
deleted file mode 100644
index e0ddfec96c..0000000000
--- a/library/cpp/streams/zc_memory_input/CMakeLists.darwin-x86_64.txt
+++ /dev/null
@@ -1,17 +0,0 @@
-
-# This file was generated 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-streams-zc_memory_input)
-target_link_libraries(cpp-streams-zc_memory_input PUBLIC
- contrib-libs-cxxsupp
- yutil
-)
-target_sources(cpp-streams-zc_memory_input PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/streams/zc_memory_input/zc_memory_input.cpp
-)
diff --git a/library/cpp/streams/zc_memory_input/CMakeLists.linux-aarch64.txt b/library/cpp/streams/zc_memory_input/CMakeLists.linux-aarch64.txt
deleted file mode 100644
index 557f29655b..0000000000
--- a/library/cpp/streams/zc_memory_input/CMakeLists.linux-aarch64.txt
+++ /dev/null
@@ -1,18 +0,0 @@
-
-# This file was generated 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-streams-zc_memory_input)
-target_link_libraries(cpp-streams-zc_memory_input PUBLIC
- contrib-libs-linux-headers
- contrib-libs-cxxsupp
- yutil
-)
-target_sources(cpp-streams-zc_memory_input PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/streams/zc_memory_input/zc_memory_input.cpp
-)
diff --git a/library/cpp/streams/zc_memory_input/CMakeLists.linux-x86_64.txt b/library/cpp/streams/zc_memory_input/CMakeLists.linux-x86_64.txt
deleted file mode 100644
index 557f29655b..0000000000
--- a/library/cpp/streams/zc_memory_input/CMakeLists.linux-x86_64.txt
+++ /dev/null
@@ -1,18 +0,0 @@
-
-# This file was generated 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-streams-zc_memory_input)
-target_link_libraries(cpp-streams-zc_memory_input PUBLIC
- contrib-libs-linux-headers
- contrib-libs-cxxsupp
- yutil
-)
-target_sources(cpp-streams-zc_memory_input PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/streams/zc_memory_input/zc_memory_input.cpp
-)
diff --git a/library/cpp/streams/zc_memory_input/CMakeLists.txt b/library/cpp/streams/zc_memory_input/CMakeLists.txt
deleted file mode 100644
index d863ebd180..0000000000
--- a/library/cpp/streams/zc_memory_input/CMakeLists.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-
-# This file was generated 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.
-
-
-if (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64" AND NOT HAVE_CUDA)
- include(CMakeLists.linux-x86_64.txt)
-elseif (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "aarch64" AND NOT HAVE_CUDA)
- include(CMakeLists.linux-aarch64.txt)
-elseif (CMAKE_SYSTEM_NAME STREQUAL "Darwin" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64")
- include(CMakeLists.darwin-x86_64.txt)
-elseif (CMAKE_SYSTEM_NAME STREQUAL "Darwin" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "arm64")
- include(CMakeLists.darwin-arm64.txt)
-elseif (WIN32 AND CMAKE_SYSTEM_PROCESSOR STREQUAL "AMD64" AND NOT HAVE_CUDA)
- include(CMakeLists.windows-x86_64.txt)
-endif()
diff --git a/library/cpp/streams/zc_memory_input/CMakeLists.windows-x86_64.txt b/library/cpp/streams/zc_memory_input/CMakeLists.windows-x86_64.txt
deleted file mode 100644
index e0ddfec96c..0000000000
--- a/library/cpp/streams/zc_memory_input/CMakeLists.windows-x86_64.txt
+++ /dev/null
@@ -1,17 +0,0 @@
-
-# This file was generated 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-streams-zc_memory_input)
-target_link_libraries(cpp-streams-zc_memory_input PUBLIC
- contrib-libs-cxxsupp
- yutil
-)
-target_sources(cpp-streams-zc_memory_input PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/streams/zc_memory_input/zc_memory_input.cpp
-)
diff --git a/library/cpp/streams/zstd/CMakeLists.darwin-arm64.txt b/library/cpp/streams/zstd/CMakeLists.darwin-arm64.txt
deleted file mode 100644
index 9a3521cd9b..0000000000
--- a/library/cpp/streams/zstd/CMakeLists.darwin-arm64.txt
+++ /dev/null
@@ -1,18 +0,0 @@
-
-# This file was generated 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-streams-zstd)
-target_link_libraries(cpp-streams-zstd PUBLIC
- contrib-libs-cxxsupp
- yutil
- contrib-libs-zstd
-)
-target_sources(cpp-streams-zstd PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/streams/zstd/zstd.cpp
-)
diff --git a/library/cpp/streams/zstd/CMakeLists.darwin-x86_64.txt b/library/cpp/streams/zstd/CMakeLists.darwin-x86_64.txt
deleted file mode 100644
index 9a3521cd9b..0000000000
--- a/library/cpp/streams/zstd/CMakeLists.darwin-x86_64.txt
+++ /dev/null
@@ -1,18 +0,0 @@
-
-# This file was generated 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-streams-zstd)
-target_link_libraries(cpp-streams-zstd PUBLIC
- contrib-libs-cxxsupp
- yutil
- contrib-libs-zstd
-)
-target_sources(cpp-streams-zstd PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/streams/zstd/zstd.cpp
-)
diff --git a/library/cpp/streams/zstd/CMakeLists.linux-aarch64.txt b/library/cpp/streams/zstd/CMakeLists.linux-aarch64.txt
deleted file mode 100644
index a48d43f3fd..0000000000
--- a/library/cpp/streams/zstd/CMakeLists.linux-aarch64.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-
-# This file was generated 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-streams-zstd)
-target_link_libraries(cpp-streams-zstd PUBLIC
- contrib-libs-linux-headers
- contrib-libs-cxxsupp
- yutil
- contrib-libs-zstd
-)
-target_sources(cpp-streams-zstd PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/streams/zstd/zstd.cpp
-)
diff --git a/library/cpp/streams/zstd/CMakeLists.linux-x86_64.txt b/library/cpp/streams/zstd/CMakeLists.linux-x86_64.txt
deleted file mode 100644
index a48d43f3fd..0000000000
--- a/library/cpp/streams/zstd/CMakeLists.linux-x86_64.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-
-# This file was generated 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-streams-zstd)
-target_link_libraries(cpp-streams-zstd PUBLIC
- contrib-libs-linux-headers
- contrib-libs-cxxsupp
- yutil
- contrib-libs-zstd
-)
-target_sources(cpp-streams-zstd PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/streams/zstd/zstd.cpp
-)
diff --git a/library/cpp/streams/zstd/CMakeLists.txt b/library/cpp/streams/zstd/CMakeLists.txt
deleted file mode 100644
index d863ebd180..0000000000
--- a/library/cpp/streams/zstd/CMakeLists.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-
-# This file was generated 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.
-
-
-if (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64" AND NOT HAVE_CUDA)
- include(CMakeLists.linux-x86_64.txt)
-elseif (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "aarch64" AND NOT HAVE_CUDA)
- include(CMakeLists.linux-aarch64.txt)
-elseif (CMAKE_SYSTEM_NAME STREQUAL "Darwin" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64")
- include(CMakeLists.darwin-x86_64.txt)
-elseif (CMAKE_SYSTEM_NAME STREQUAL "Darwin" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "arm64")
- include(CMakeLists.darwin-arm64.txt)
-elseif (WIN32 AND CMAKE_SYSTEM_PROCESSOR STREQUAL "AMD64" AND NOT HAVE_CUDA)
- include(CMakeLists.windows-x86_64.txt)
-endif()
diff --git a/library/cpp/streams/zstd/CMakeLists.windows-x86_64.txt b/library/cpp/streams/zstd/CMakeLists.windows-x86_64.txt
deleted file mode 100644
index 9a3521cd9b..0000000000
--- a/library/cpp/streams/zstd/CMakeLists.windows-x86_64.txt
+++ /dev/null
@@ -1,18 +0,0 @@
-
-# This file was generated 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-streams-zstd)
-target_link_libraries(cpp-streams-zstd PUBLIC
- contrib-libs-cxxsupp
- yutil
- contrib-libs-zstd
-)
-target_sources(cpp-streams-zstd PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/streams/zstd/zstd.cpp
-)