diff options
author | svidyuk <svidyuk@yandex-team.com> | 2023-02-18 07:43:57 +0300 |
---|---|---|
committer | svidyuk <svidyuk@yandex-team.com> | 2023-02-18 07:43:57 +0300 |
commit | a9e5890a07cad8cfc475223eb12855a31ec8318a (patch) | |
tree | 104d1c6ba83fb89e4373d7582c7a465c9fbbad16 /contrib/restricted/boost/context/fcontext_impl | |
parent | 8febb7430db23f80ae26a24cbfdc17e40ae3d1db (diff) | |
download | ydb-a9e5890a07cad8cfc475223eb12855a31ec8318a.tar.gz |
NO_COMPILER_WARNINGS in cmake msvc builds
Diffstat (limited to 'contrib/restricted/boost/context/fcontext_impl')
3 files changed, 3 insertions, 3 deletions
diff --git a/contrib/restricted/boost/context/fcontext_impl/CMakeLists.darwin.txt b/contrib/restricted/boost/context/fcontext_impl/CMakeLists.darwin.txt index 2d0e3318d0..d5301afd15 100644 --- a/contrib/restricted/boost/context/fcontext_impl/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/context/fcontext_impl/CMakeLists.darwin.txt @@ -9,7 +9,7 @@ add_library(boost-context-fcontext_impl) target_compile_options(boost-context-fcontext_impl PRIVATE - -Wno-everything + $<IF:$<CXX_COMPILER_ID:MSVC>,,-Wno-everything> ) target_link_libraries(boost-context-fcontext_impl PUBLIC contrib-libs-cxxsupp diff --git a/contrib/restricted/boost/context/fcontext_impl/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/context/fcontext_impl/CMakeLists.linux-aarch64.txt index c8156f04c3..49a0c3338d 100644 --- a/contrib/restricted/boost/context/fcontext_impl/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/context/fcontext_impl/CMakeLists.linux-aarch64.txt @@ -9,7 +9,7 @@ add_library(boost-context-fcontext_impl) target_compile_options(boost-context-fcontext_impl PRIVATE - -Wno-everything + $<IF:$<CXX_COMPILER_ID:MSVC>,,-Wno-everything> ) target_link_libraries(boost-context-fcontext_impl PUBLIC contrib-libs-linux-headers diff --git a/contrib/restricted/boost/context/fcontext_impl/CMakeLists.linux.txt b/contrib/restricted/boost/context/fcontext_impl/CMakeLists.linux.txt index c59cfb1515..21ce313ed9 100644 --- a/contrib/restricted/boost/context/fcontext_impl/CMakeLists.linux.txt +++ b/contrib/restricted/boost/context/fcontext_impl/CMakeLists.linux.txt @@ -9,7 +9,7 @@ add_library(boost-context-fcontext_impl) target_compile_options(boost-context-fcontext_impl PRIVATE - -Wno-everything + $<IF:$<CXX_COMPILER_ID:MSVC>,,-Wno-everything> ) target_link_libraries(boost-context-fcontext_impl PUBLIC contrib-libs-linux-headers |