aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/restricted/abseil-cpp/absl/hash
diff options
context:
space:
mode:
authorarcadia-devtools <arcadia-devtools@yandex-team.ru>2022-03-10 11:08:43 +0300
committerarcadia-devtools <arcadia-devtools@yandex-team.ru>2022-03-10 11:08:43 +0300
commitd32759b7eb812b4a4033cc61e1e98245544b4992 (patch)
tree22bbb3e9b46c1b55818aaf475f699ae187ce328b /contrib/restricted/abseil-cpp/absl/hash
parent471e9b902d01b70b2d12146772e30528a216ee82 (diff)
downloadydb-d32759b7eb812b4a4033cc61e1e98245544b4992.tar.gz
intermediate changes
ref:7e819949a28b77d60c98019ed1950733e734a77e
Diffstat (limited to 'contrib/restricted/abseil-cpp/absl/hash')
-rw-r--r--contrib/restricted/abseil-cpp/absl/hash/CMakeLists.linux.txt39
-rw-r--r--contrib/restricted/abseil-cpp/absl/hash/CMakeLists.txt34
-rw-r--r--contrib/restricted/abseil-cpp/absl/hash/internal/CMakeLists.linux.txt30
-rw-r--r--contrib/restricted/abseil-cpp/absl/hash/internal/CMakeLists.txt25
4 files changed, 75 insertions, 53 deletions
diff --git a/contrib/restricted/abseil-cpp/absl/hash/CMakeLists.linux.txt b/contrib/restricted/abseil-cpp/absl/hash/CMakeLists.linux.txt
new file mode 100644
index 0000000000..c41a2b325d
--- /dev/null
+++ b/contrib/restricted/abseil-cpp/absl/hash/CMakeLists.linux.txt
@@ -0,0 +1,39 @@
+
+# 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(abseil-cpp-absl-hash)
+target_compile_options(abseil-cpp-absl-hash PRIVATE
+ -DNOMINMAX
+)
+target_include_directories(abseil-cpp-absl-hash PUBLIC
+ ${CMAKE_SOURCE_DIR}/contrib/restricted/abseil-cpp
+)
+target_include_directories(abseil-cpp-absl-hash PRIVATE
+ ${CMAKE_SOURCE_DIR}/contrib/restricted/abseil-cpp
+)
+target_link_libraries(abseil-cpp-absl-hash PUBLIC
+ contrib-libs-cxxsupp
+ abseil-cpp-absl-base
+ base-internal-raw_logging
+ base-internal-spinlock_wait
+ base-internal-throw_delegate
+ absl-base-log_severity
+ abseil-cpp-absl-city
+ absl-hash-internal
+ abseil-cpp-absl-numeric
+ abseil-cpp-absl-strings
+ strings-internal-absl_strings_internal
+ abseil-cpp-absl-types
+ absl-types-bad_optional_access
+ absl-types-bad_variant_access
+ absl-types-internal
+)
+target_sources(abseil-cpp-absl-hash PRIVATE
+ ${CMAKE_SOURCE_DIR}/contrib/restricted/abseil-cpp/absl/hash/internal/hash.cc
+)
diff --git a/contrib/restricted/abseil-cpp/absl/hash/CMakeLists.txt b/contrib/restricted/abseil-cpp/absl/hash/CMakeLists.txt
index c41a2b325d..c031ddb850 100644
--- a/contrib/restricted/abseil-cpp/absl/hash/CMakeLists.txt
+++ b/contrib/restricted/abseil-cpp/absl/hash/CMakeLists.txt
@@ -6,34 +6,6 @@
# original buildsystem will not be accepted.
-
-add_library(abseil-cpp-absl-hash)
-target_compile_options(abseil-cpp-absl-hash PRIVATE
- -DNOMINMAX
-)
-target_include_directories(abseil-cpp-absl-hash PUBLIC
- ${CMAKE_SOURCE_DIR}/contrib/restricted/abseil-cpp
-)
-target_include_directories(abseil-cpp-absl-hash PRIVATE
- ${CMAKE_SOURCE_DIR}/contrib/restricted/abseil-cpp
-)
-target_link_libraries(abseil-cpp-absl-hash PUBLIC
- contrib-libs-cxxsupp
- abseil-cpp-absl-base
- base-internal-raw_logging
- base-internal-spinlock_wait
- base-internal-throw_delegate
- absl-base-log_severity
- abseil-cpp-absl-city
- absl-hash-internal
- abseil-cpp-absl-numeric
- abseil-cpp-absl-strings
- strings-internal-absl_strings_internal
- abseil-cpp-absl-types
- absl-types-bad_optional_access
- absl-types-bad_variant_access
- absl-types-internal
-)
-target_sources(abseil-cpp-absl-hash PRIVATE
- ${CMAKE_SOURCE_DIR}/contrib/restricted/abseil-cpp/absl/hash/internal/hash.cc
-)
+if (UNIX)
+ include(CMakeLists.linux.txt)
+endif()
diff --git a/contrib/restricted/abseil-cpp/absl/hash/internal/CMakeLists.linux.txt b/contrib/restricted/abseil-cpp/absl/hash/internal/CMakeLists.linux.txt
new file mode 100644
index 0000000000..794e3f2cb4
--- /dev/null
+++ b/contrib/restricted/abseil-cpp/absl/hash/internal/CMakeLists.linux.txt
@@ -0,0 +1,30 @@
+
+# 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(absl-hash-internal)
+target_compile_options(absl-hash-internal PRIVATE
+ -DNOMINMAX
+)
+target_include_directories(absl-hash-internal PUBLIC
+ ${CMAKE_SOURCE_DIR}/contrib/restricted/abseil-cpp
+)
+target_include_directories(absl-hash-internal PRIVATE
+ ${CMAKE_SOURCE_DIR}/contrib/restricted/abseil-cpp
+)
+target_link_libraries(absl-hash-internal PUBLIC
+ contrib-libs-cxxsupp
+ abseil-cpp-absl-base
+ base-internal-raw_logging
+ base-internal-spinlock_wait
+ absl-base-log_severity
+ abseil-cpp-absl-numeric
+)
+target_sources(absl-hash-internal PRIVATE
+ ${CMAKE_SOURCE_DIR}/contrib/restricted/abseil-cpp/absl/hash/internal/low_level_hash.cc
+)
diff --git a/contrib/restricted/abseil-cpp/absl/hash/internal/CMakeLists.txt b/contrib/restricted/abseil-cpp/absl/hash/internal/CMakeLists.txt
index 794e3f2cb4..c031ddb850 100644
--- a/contrib/restricted/abseil-cpp/absl/hash/internal/CMakeLists.txt
+++ b/contrib/restricted/abseil-cpp/absl/hash/internal/CMakeLists.txt
@@ -6,25 +6,6 @@
# original buildsystem will not be accepted.
-
-add_library(absl-hash-internal)
-target_compile_options(absl-hash-internal PRIVATE
- -DNOMINMAX
-)
-target_include_directories(absl-hash-internal PUBLIC
- ${CMAKE_SOURCE_DIR}/contrib/restricted/abseil-cpp
-)
-target_include_directories(absl-hash-internal PRIVATE
- ${CMAKE_SOURCE_DIR}/contrib/restricted/abseil-cpp
-)
-target_link_libraries(absl-hash-internal PUBLIC
- contrib-libs-cxxsupp
- abseil-cpp-absl-base
- base-internal-raw_logging
- base-internal-spinlock_wait
- absl-base-log_severity
- abseil-cpp-absl-numeric
-)
-target_sources(absl-hash-internal PRIVATE
- ${CMAKE_SOURCE_DIR}/contrib/restricted/abseil-cpp/absl/hash/internal/low_level_hash.cc
-)
+if (UNIX)
+ include(CMakeLists.linux.txt)
+endif()