diff options
author | bugaevskiy <bugaevskiy@yandex-team.com> | 2022-09-25 13:20:25 +0300 |
---|---|---|
committer | bugaevskiy <bugaevskiy@yandex-team.com> | 2022-09-25 13:20:25 +0300 |
commit | 28b6f457594e2f97604ba60b967734a623bf3449 (patch) | |
tree | e46fce5d4a9fdc2ef0d4f2f2f8383f213ebeeaf0 | |
parent | a56f9bf1dd89a3bf9b12b3075311c0c93e84fbb2 (diff) | |
download | ydb-28b6f457594e2f97604ba60b967734a623bf3449.tar.gz |
yamaker: apply boost helper to some projects
-rw-r--r-- | contrib/restricted/boost/algorithm/CMakeLists.txt | 1 | ||||
-rw-r--r-- | contrib/restricted/boost/array/CMakeLists.txt | 1 | ||||
-rw-r--r-- | contrib/restricted/boost/chrono/CMakeLists.txt | 4 | ||||
-rw-r--r-- | contrib/restricted/boost/pool/CMakeLists.txt | 1 |
4 files changed, 3 insertions, 4 deletions
diff --git a/contrib/restricted/boost/algorithm/CMakeLists.txt b/contrib/restricted/boost/algorithm/CMakeLists.txt index cfdc6eaf88..d6981439fa 100644 --- a/contrib/restricted/boost/algorithm/CMakeLists.txt +++ b/contrib/restricted/boost/algorithm/CMakeLists.txt @@ -13,7 +13,6 @@ target_include_directories(restricted-boost-algorithm INTERFACE ) target_link_libraries(restricted-boost-algorithm INTERFACE contrib-libs-cxxsupp - yutil restricted-boost-array restricted-boost-assert restricted-boost-bind diff --git a/contrib/restricted/boost/array/CMakeLists.txt b/contrib/restricted/boost/array/CMakeLists.txt index a4ea608e0c..1030401266 100644 --- a/contrib/restricted/boost/array/CMakeLists.txt +++ b/contrib/restricted/boost/array/CMakeLists.txt @@ -13,7 +13,6 @@ target_include_directories(restricted-boost-array INTERFACE ) target_link_libraries(restricted-boost-array INTERFACE contrib-libs-cxxsupp - yutil restricted-boost-assert restricted-boost-config restricted-boost-core diff --git a/contrib/restricted/boost/chrono/CMakeLists.txt b/contrib/restricted/boost/chrono/CMakeLists.txt index 1247dd0f76..e1e1dad2a8 100644 --- a/contrib/restricted/boost/chrono/CMakeLists.txt +++ b/contrib/restricted/boost/chrono/CMakeLists.txt @@ -8,12 +8,14 @@ add_library(restricted-boost-chrono) +target_compile_options(restricted-boost-chrono PRIVATE + -Wno-everything +) target_include_directories(restricted-boost-chrono PUBLIC ${CMAKE_SOURCE_DIR}/contrib/restricted/boost/chrono/include ) target_link_libraries(restricted-boost-chrono PUBLIC contrib-libs-cxxsupp - yutil restricted-boost-assert restricted-boost-config restricted-boost-core diff --git a/contrib/restricted/boost/pool/CMakeLists.txt b/contrib/restricted/boost/pool/CMakeLists.txt index eb125696d0..e2e15aa542 100644 --- a/contrib/restricted/boost/pool/CMakeLists.txt +++ b/contrib/restricted/boost/pool/CMakeLists.txt @@ -13,7 +13,6 @@ target_include_directories(restricted-boost-pool INTERFACE ) target_link_libraries(restricted-boost-pool INTERFACE contrib-libs-cxxsupp - yutil restricted-boost-assert restricted-boost-config restricted-boost-integer |