From 0c31d97afd7858af5f8f858c8addf91655ca9ccc Mon Sep 17 00:00:00 2001
From: thegeorg <thegeorg@yandex-team.com>
Date: Thu, 15 Dec 2022 19:25:15 +0300
Subject: Sync linux-headers instead of using system ones

---
 .../cpp/string_utils/base64/CMakeLists.darwin.txt  | 23 +++++++++++++++++++++
 .../base64/CMakeLists.linux-aarch64.txt            | 24 ++++++++++++++++++++++
 .../cpp/string_utils/base64/CMakeLists.linux.txt   | 24 ++++++++++++++++++++++
 library/cpp/string_utils/base64/CMakeLists.txt     | 22 +++++++-------------
 4 files changed, 78 insertions(+), 15 deletions(-)
 create mode 100644 library/cpp/string_utils/base64/CMakeLists.darwin.txt
 create mode 100644 library/cpp/string_utils/base64/CMakeLists.linux-aarch64.txt
 create mode 100644 library/cpp/string_utils/base64/CMakeLists.linux.txt

(limited to 'library/cpp/string_utils/base64')

diff --git a/library/cpp/string_utils/base64/CMakeLists.darwin.txt b/library/cpp/string_utils/base64/CMakeLists.darwin.txt
new file mode 100644
index 0000000000..0bf08c6bca
--- /dev/null
+++ b/library/cpp/string_utils/base64/CMakeLists.darwin.txt
@@ -0,0 +1,23 @@
+
+# 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-string_utils-base64)
+target_link_libraries(cpp-string_utils-base64 PUBLIC
+  contrib-libs-cxxsupp
+  yutil
+  libs-base64-avx2
+  libs-base64-ssse3
+  libs-base64-neon32
+  libs-base64-neon64
+  libs-base64-plain32
+  libs-base64-plain64
+)
+target_sources(cpp-string_utils-base64 PRIVATE
+  ${CMAKE_SOURCE_DIR}/library/cpp/string_utils/base64/base64.cpp
+)
diff --git a/library/cpp/string_utils/base64/CMakeLists.linux-aarch64.txt b/library/cpp/string_utils/base64/CMakeLists.linux-aarch64.txt
new file mode 100644
index 0000000000..ff7d909b10
--- /dev/null
+++ b/library/cpp/string_utils/base64/CMakeLists.linux-aarch64.txt
@@ -0,0 +1,24 @@
+
+# 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-string_utils-base64)
+target_link_libraries(cpp-string_utils-base64 PUBLIC
+  contrib-libs-linux-headers
+  contrib-libs-cxxsupp
+  yutil
+  libs-base64-avx2
+  libs-base64-ssse3
+  libs-base64-neon32
+  libs-base64-neon64
+  libs-base64-plain32
+  libs-base64-plain64
+)
+target_sources(cpp-string_utils-base64 PRIVATE
+  ${CMAKE_SOURCE_DIR}/library/cpp/string_utils/base64/base64.cpp
+)
diff --git a/library/cpp/string_utils/base64/CMakeLists.linux.txt b/library/cpp/string_utils/base64/CMakeLists.linux.txt
new file mode 100644
index 0000000000..ff7d909b10
--- /dev/null
+++ b/library/cpp/string_utils/base64/CMakeLists.linux.txt
@@ -0,0 +1,24 @@
+
+# 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-string_utils-base64)
+target_link_libraries(cpp-string_utils-base64 PUBLIC
+  contrib-libs-linux-headers
+  contrib-libs-cxxsupp
+  yutil
+  libs-base64-avx2
+  libs-base64-ssse3
+  libs-base64-neon32
+  libs-base64-neon64
+  libs-base64-plain32
+  libs-base64-plain64
+)
+target_sources(cpp-string_utils-base64 PRIVATE
+  ${CMAKE_SOURCE_DIR}/library/cpp/string_utils/base64/base64.cpp
+)
diff --git a/library/cpp/string_utils/base64/CMakeLists.txt b/library/cpp/string_utils/base64/CMakeLists.txt
index 0bf08c6bca..3e0811fb22 100644
--- a/library/cpp/string_utils/base64/CMakeLists.txt
+++ b/library/cpp/string_utils/base64/CMakeLists.txt
@@ -6,18 +6,10 @@
 # original buildsystem will not be accepted.
 
 
-
-add_library(cpp-string_utils-base64)
-target_link_libraries(cpp-string_utils-base64 PUBLIC
-  contrib-libs-cxxsupp
-  yutil
-  libs-base64-avx2
-  libs-base64-ssse3
-  libs-base64-neon32
-  libs-base64-neon64
-  libs-base64-plain32
-  libs-base64-plain64
-)
-target_sources(cpp-string_utils-base64 PRIVATE
-  ${CMAKE_SOURCE_DIR}/library/cpp/string_utils/base64/base64.cpp
-)
+if (CMAKE_SYSTEM_PROCESSOR STREQUAL "aarch64" AND UNIX AND NOT APPLE AND NOT ANDROID)
+  include(CMakeLists.linux-aarch64.txt)
+elseif (APPLE)
+  include(CMakeLists.darwin.txt)
+elseif (CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64" AND UNIX AND NOT APPLE AND NOT ANDROID)
+  include(CMakeLists.linux.txt)
+endif()
-- 
cgit v1.2.3