aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/restricted
diff options
context:
space:
mode:
authorshadchin <shadchin@yandex-team.com>2022-08-23 01:50:09 +0300
committershadchin <shadchin@yandex-team.com>2022-08-23 01:50:09 +0300
commiteba8052758eb59c62847f99d8697c35a25cb5aa1 (patch)
treef38353cb73a04e4159a526d48f99145bc8e4ad9f /contrib/restricted
parent2564271e281a6bce492be03e7422ff04873ff27f (diff)
downloadydb-eba8052758eb59c62847f99d8697c35a25cb5aa1.tar.gz
Fix build ymake for win
Diffstat (limited to 'contrib/restricted')
-rw-r--r--contrib/restricted/boost/container/CMakeLists.txt14
1 files changed, 3 insertions, 11 deletions
diff --git a/contrib/restricted/boost/container/CMakeLists.txt b/contrib/restricted/boost/container/CMakeLists.txt
index ddda932a55..a1155e5798 100644
--- a/contrib/restricted/boost/container/CMakeLists.txt
+++ b/contrib/restricted/boost/container/CMakeLists.txt
@@ -8,6 +8,9 @@
add_library(restricted-boost-container)
+target_compile_options(restricted-boost-container PRIVATE
+ -Wno-everything
+)
target_include_directories(restricted-boost-container PUBLIC
${CMAKE_SOURCE_DIR}/contrib/restricted/boost/container/include
)
@@ -32,14 +35,3 @@ target_sources(restricted-boost-container PRIVATE
${CMAKE_SOURCE_DIR}/contrib/restricted/boost/container/src/synchronized_pool_resource.cpp
${CMAKE_SOURCE_DIR}/contrib/restricted/boost/container/src/unsynchronized_pool_resource.cpp
)
-set_property(
- SOURCE
- ${CMAKE_SOURCE_DIR}/contrib/restricted/boost/container/src/alloc_lib.c
- APPEND
- PROPERTY
- COMPILE_OPTIONS
- -Wno-deprecated-declarations
- -Wno-incompatible-pointer-types
- -Wno-macro-redefined
- -Wno-null-pointer-arithmetic
-)