diff options
author | bugaevskiy <bugaevskiy@yandex-team.com> | 2022-07-21 10:00:29 +0300 |
---|---|---|
committer | bugaevskiy <bugaevskiy@yandex-team.com> | 2022-07-21 10:00:29 +0300 |
commit | 2b837432409524fbb011dee286eac2cc16977240 (patch) | |
tree | 6e964a4310723de80c367abda250596750f02e78 | |
parent | a9a583c36313303d32e1b4d7195b2356cd4601b8 (diff) | |
download | ydb-2b837432409524fbb011dee286eac2cc16977240.tar.gz |
Reimport boost/static_assert as a separate project
-rw-r--r-- | CMakeLists.darwin.txt | 1 | ||||
-rw-r--r-- | CMakeLists.linux.txt | 1 | ||||
-rw-r--r-- | contrib/restricted/boost/CMakeLists.txt | 1 | ||||
-rw-r--r-- | contrib/restricted/boost/static_assert/CMakeLists.txt | 18 | ||||
-rw-r--r-- | contrib/restricted/boost/static_assert/include/boost/static_assert.hpp (renamed from contrib/restricted/boost/boost/static_assert.hpp) | 0 |
5 files changed, 21 insertions, 0 deletions
diff --git a/CMakeLists.darwin.txt b/CMakeLists.darwin.txt index 9728e5c05a..2840412326 100644 --- a/CMakeLists.darwin.txt +++ b/CMakeLists.darwin.txt @@ -139,6 +139,7 @@ add_subdirectory(contrib/restricted/boost/io) add_subdirectory(contrib/restricted/boost/mp11) add_subdirectory(contrib/restricted/boost/predef) add_subdirectory(contrib/restricted/boost/preprocessor) +add_subdirectory(contrib/restricted/boost/static_assert) add_subdirectory(contrib/restricted/boost/winapi) add_subdirectory(contrib/restricted/fast_float) add_subdirectory(contrib/restricted/thrift) diff --git a/CMakeLists.linux.txt b/CMakeLists.linux.txt index 65082ca701..ebf6dc2b40 100644 --- a/CMakeLists.linux.txt +++ b/CMakeLists.linux.txt @@ -217,6 +217,7 @@ add_subdirectory(contrib/restricted/boost/io) add_subdirectory(contrib/restricted/boost/mp11) add_subdirectory(contrib/restricted/boost/predef) add_subdirectory(contrib/restricted/boost/preprocessor) +add_subdirectory(contrib/restricted/boost/static_assert) add_subdirectory(contrib/restricted/boost/winapi) add_subdirectory(contrib/restricted/fast_float) add_subdirectory(contrib/restricted/thrift) diff --git a/contrib/restricted/boost/CMakeLists.txt b/contrib/restricted/boost/CMakeLists.txt index 8c4fb32ae9..2ffb17e0c7 100644 --- a/contrib/restricted/boost/CMakeLists.txt +++ b/contrib/restricted/boost/CMakeLists.txt @@ -19,5 +19,6 @@ target_link_libraries(contrib-restricted-boost INTERFACE restricted-boost-mp11 restricted-boost-predef restricted-boost-preprocessor + restricted-boost-static_assert restricted-boost-winapi ) diff --git a/contrib/restricted/boost/static_assert/CMakeLists.txt b/contrib/restricted/boost/static_assert/CMakeLists.txt new file mode 100644 index 0000000000..16d8263bbc --- /dev/null +++ b/contrib/restricted/boost/static_assert/CMakeLists.txt @@ -0,0 +1,18 @@ + +# 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-static_assert INTERFACE) +target_include_directories(restricted-boost-static_assert INTERFACE + ${CMAKE_SOURCE_DIR}/contrib/restricted/boost/static_assert/include +) +target_link_libraries(restricted-boost-static_assert INTERFACE + contrib-libs-cxxsupp + yutil + restricted-boost-config +) diff --git a/contrib/restricted/boost/boost/static_assert.hpp b/contrib/restricted/boost/static_assert/include/boost/static_assert.hpp index 07d461d492..07d461d492 100644 --- a/contrib/restricted/boost/boost/static_assert.hpp +++ b/contrib/restricted/boost/static_assert/include/boost/static_assert.hpp |