aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbugaevskiy <bugaevskiy@yandex-team.com>2022-08-13 11:00:14 +0300
committerbugaevskiy <bugaevskiy@yandex-team.com>2022-08-13 11:00:14 +0300
commit2532bfa75231c59a99ad840021d81b59178ffa33 (patch)
tree7a9f7a80a744d467605db375473f5e0e875c7567
parente6ec11057ba4a73eb1e19b150df4278b9dc92086 (diff)
downloadydb-2532bfa75231c59a99ad840021d81b59178ffa33.tar.gz
Reimport boost/unordered as a separate project
-rw-r--r--CMakeLists.darwin.txt1
-rw-r--r--CMakeLists.linux.txt1
-rw-r--r--contrib/restricted/boost/CMakeLists.txt1
-rw-r--r--contrib/restricted/boost/unordered/CMakeLists.txt30
-rw-r--r--contrib/restricted/boost/unordered/include/boost/unordered/detail/fwd.hpp (renamed from contrib/restricted/boost/boost/unordered/detail/fwd.hpp)0
-rw-r--r--contrib/restricted/boost/unordered/include/boost/unordered/detail/implementation.hpp (renamed from contrib/restricted/boost/boost/unordered/detail/implementation.hpp)0
-rw-r--r--contrib/restricted/boost/unordered/include/boost/unordered/detail/map.hpp (renamed from contrib/restricted/boost/boost/unordered/detail/map.hpp)0
-rw-r--r--contrib/restricted/boost/unordered/include/boost/unordered/detail/set.hpp (renamed from contrib/restricted/boost/boost/unordered/detail/set.hpp)0
-rw-r--r--contrib/restricted/boost/unordered/include/boost/unordered/unordered_map.hpp (renamed from contrib/restricted/boost/boost/unordered/unordered_map.hpp)0
-rw-r--r--contrib/restricted/boost/unordered/include/boost/unordered/unordered_map_fwd.hpp (renamed from contrib/restricted/boost/boost/unordered/unordered_map_fwd.hpp)0
-rw-r--r--contrib/restricted/boost/unordered/include/boost/unordered/unordered_set.hpp (renamed from contrib/restricted/boost/boost/unordered/unordered_set.hpp)0
-rw-r--r--contrib/restricted/boost/unordered/include/boost/unordered/unordered_set_fwd.hpp (renamed from contrib/restricted/boost/boost/unordered/unordered_set_fwd.hpp)0
-rw-r--r--contrib/restricted/boost/unordered/include/boost/unordered_map.hpp (renamed from contrib/restricted/boost/boost/unordered_map.hpp)0
-rw-r--r--contrib/restricted/boost/unordered/include/boost/unordered_set.hpp (renamed from contrib/restricted/boost/boost/unordered_set.hpp)0
14 files changed, 33 insertions, 0 deletions
diff --git a/CMakeLists.darwin.txt b/CMakeLists.darwin.txt
index 9698c4039d..b765a8a93c 100644
--- a/CMakeLists.darwin.txt
+++ b/CMakeLists.darwin.txt
@@ -319,6 +319,7 @@ add_subdirectory(contrib/restricted/boost/qvm)
add_subdirectory(contrib/restricted/boost/rational)
add_subdirectory(contrib/restricted/boost/tokenizer)
add_subdirectory(contrib/restricted/boost/tti)
+add_subdirectory(contrib/restricted/boost/unordered)
add_subdirectory(contrib/restricted/boost/variant)
add_subdirectory(contrib/restricted/boost/vmd)
add_subdirectory(contrib/restricted/fast_float)
diff --git a/CMakeLists.linux.txt b/CMakeLists.linux.txt
index 204fca2593..fa57e7f28e 100644
--- a/CMakeLists.linux.txt
+++ b/CMakeLists.linux.txt
@@ -322,6 +322,7 @@ add_subdirectory(contrib/restricted/boost/qvm)
add_subdirectory(contrib/restricted/boost/rational)
add_subdirectory(contrib/restricted/boost/tokenizer)
add_subdirectory(contrib/restricted/boost/tti)
+add_subdirectory(contrib/restricted/boost/unordered)
add_subdirectory(contrib/restricted/boost/variant)
add_subdirectory(contrib/restricted/boost/vmd)
add_subdirectory(contrib/restricted/fast_float)
diff --git a/contrib/restricted/boost/CMakeLists.txt b/contrib/restricted/boost/CMakeLists.txt
index baa24d3430..f6ac4d4f18 100644
--- a/contrib/restricted/boost/CMakeLists.txt
+++ b/contrib/restricted/boost/CMakeLists.txt
@@ -57,6 +57,7 @@ target_link_libraries(contrib-restricted-boost INTERFACE
restricted-boost-type_index
restricted-boost-type_traits
restricted-boost-typeof
+ restricted-boost-unordered
restricted-boost-utility
restricted-boost-variant
restricted-boost-vmd
diff --git a/contrib/restricted/boost/unordered/CMakeLists.txt b/contrib/restricted/boost/unordered/CMakeLists.txt
new file mode 100644
index 0000000000..642d142744
--- /dev/null
+++ b/contrib/restricted/boost/unordered/CMakeLists.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(restricted-boost-unordered INTERFACE)
+target_include_directories(restricted-boost-unordered INTERFACE
+ ${CMAKE_SOURCE_DIR}/contrib/restricted/boost/unordered/include
+)
+target_link_libraries(restricted-boost-unordered INTERFACE
+ contrib-libs-cxxsupp
+ yutil
+ restricted-boost-assert
+ restricted-boost-config
+ restricted-boost-container
+ restricted-boost-container_hash
+ restricted-boost-core
+ restricted-boost-detail
+ restricted-boost-move
+ restricted-boost-predef
+ restricted-boost-preprocessor
+ restricted-boost-smart_ptr
+ restricted-boost-throw_exception
+ restricted-boost-tuple
+ restricted-boost-type_traits
+)
diff --git a/contrib/restricted/boost/boost/unordered/detail/fwd.hpp b/contrib/restricted/boost/unordered/include/boost/unordered/detail/fwd.hpp
index e749ce67bb..e749ce67bb 100644
--- a/contrib/restricted/boost/boost/unordered/detail/fwd.hpp
+++ b/contrib/restricted/boost/unordered/include/boost/unordered/detail/fwd.hpp
diff --git a/contrib/restricted/boost/boost/unordered/detail/implementation.hpp b/contrib/restricted/boost/unordered/include/boost/unordered/detail/implementation.hpp
index 9dffde159d..9dffde159d 100644
--- a/contrib/restricted/boost/boost/unordered/detail/implementation.hpp
+++ b/contrib/restricted/boost/unordered/include/boost/unordered/detail/implementation.hpp
diff --git a/contrib/restricted/boost/boost/unordered/detail/map.hpp b/contrib/restricted/boost/unordered/include/boost/unordered/detail/map.hpp
index 8025de80d3..8025de80d3 100644
--- a/contrib/restricted/boost/boost/unordered/detail/map.hpp
+++ b/contrib/restricted/boost/unordered/include/boost/unordered/detail/map.hpp
diff --git a/contrib/restricted/boost/boost/unordered/detail/set.hpp b/contrib/restricted/boost/unordered/include/boost/unordered/detail/set.hpp
index b7869e3c51..b7869e3c51 100644
--- a/contrib/restricted/boost/boost/unordered/detail/set.hpp
+++ b/contrib/restricted/boost/unordered/include/boost/unordered/detail/set.hpp
diff --git a/contrib/restricted/boost/boost/unordered/unordered_map.hpp b/contrib/restricted/boost/unordered/include/boost/unordered/unordered_map.hpp
index 1910219ccb..1910219ccb 100644
--- a/contrib/restricted/boost/boost/unordered/unordered_map.hpp
+++ b/contrib/restricted/boost/unordered/include/boost/unordered/unordered_map.hpp
diff --git a/contrib/restricted/boost/boost/unordered/unordered_map_fwd.hpp b/contrib/restricted/boost/unordered/include/boost/unordered/unordered_map_fwd.hpp
index 794b704258..794b704258 100644
--- a/contrib/restricted/boost/boost/unordered/unordered_map_fwd.hpp
+++ b/contrib/restricted/boost/unordered/include/boost/unordered/unordered_map_fwd.hpp
diff --git a/contrib/restricted/boost/boost/unordered/unordered_set.hpp b/contrib/restricted/boost/unordered/include/boost/unordered/unordered_set.hpp
index dfc24e85e5..dfc24e85e5 100644
--- a/contrib/restricted/boost/boost/unordered/unordered_set.hpp
+++ b/contrib/restricted/boost/unordered/include/boost/unordered/unordered_set.hpp
diff --git a/contrib/restricted/boost/boost/unordered/unordered_set_fwd.hpp b/contrib/restricted/boost/unordered/include/boost/unordered/unordered_set_fwd.hpp
index 35e2820f95..35e2820f95 100644
--- a/contrib/restricted/boost/boost/unordered/unordered_set_fwd.hpp
+++ b/contrib/restricted/boost/unordered/include/boost/unordered/unordered_set_fwd.hpp
diff --git a/contrib/restricted/boost/boost/unordered_map.hpp b/contrib/restricted/boost/unordered/include/boost/unordered_map.hpp
index 92ef4d601a..92ef4d601a 100644
--- a/contrib/restricted/boost/boost/unordered_map.hpp
+++ b/contrib/restricted/boost/unordered/include/boost/unordered_map.hpp
diff --git a/contrib/restricted/boost/boost/unordered_set.hpp b/contrib/restricted/boost/unordered/include/boost/unordered_set.hpp
index 1c83c02b28..1c83c02b28 100644
--- a/contrib/restricted/boost/boost/unordered_set.hpp
+++ b/contrib/restricted/boost/unordered/include/boost/unordered_set.hpp