diff options
author | shadchin <shadchin@yandex-team.com> | 2022-08-23 01:50:09 +0300 |
---|---|---|
committer | shadchin <shadchin@yandex-team.com> | 2022-08-23 01:50:09 +0300 |
commit | eba8052758eb59c62847f99d8697c35a25cb5aa1 (patch) | |
tree | f38353cb73a04e4159a526d48f99145bc8e4ad9f /contrib/restricted | |
parent | 2564271e281a6bce492be03e7422ff04873ff27f (diff) | |
download | ydb-eba8052758eb59c62847f99d8697c35a25cb5aa1.tar.gz |
Fix build ymake for win
Diffstat (limited to 'contrib/restricted')
-rw-r--r-- | contrib/restricted/boost/container/CMakeLists.txt | 14 |
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 -) |