diff options
author | svidyuk <[email protected]> | 2023-02-18 07:43:57 +0300 |
---|---|---|
committer | svidyuk <[email protected]> | 2023-02-18 07:43:57 +0300 |
commit | a9e5890a07cad8cfc475223eb12855a31ec8318a (patch) | |
tree | 104d1c6ba83fb89e4373d7582c7a465c9fbbad16 /contrib/restricted/boost/container | |
parent | 8febb7430db23f80ae26a24cbfdc17e40ae3d1db (diff) |
NO_COMPILER_WARNINGS in cmake msvc builds
Diffstat (limited to 'contrib/restricted/boost/container')
3 files changed, 3 insertions, 3 deletions
diff --git a/contrib/restricted/boost/container/CMakeLists.darwin.txt b/contrib/restricted/boost/container/CMakeLists.darwin.txt index a1efaa8df81..74ef11ce7c5 100644 --- a/contrib/restricted/boost/container/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/container/CMakeLists.darwin.txt @@ -9,7 +9,7 @@ add_library(restricted-boost-container) target_compile_options(restricted-boost-container PRIVATE - -Wno-everything + $<IF:$<CXX_COMPILER_ID:MSVC>,,-Wno-everything> ) target_include_directories(restricted-boost-container PUBLIC ${CMAKE_SOURCE_DIR}/contrib/restricted/boost/container/include diff --git a/contrib/restricted/boost/container/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/container/CMakeLists.linux-aarch64.txt index 59467d219d9..8478a2b4757 100644 --- a/contrib/restricted/boost/container/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/container/CMakeLists.linux-aarch64.txt @@ -9,7 +9,7 @@ add_library(restricted-boost-container) target_compile_options(restricted-boost-container PRIVATE - -Wno-everything + $<IF:$<CXX_COMPILER_ID:MSVC>,,-Wno-everything> ) target_include_directories(restricted-boost-container PUBLIC ${CMAKE_SOURCE_DIR}/contrib/restricted/boost/container/include diff --git a/contrib/restricted/boost/container/CMakeLists.linux.txt b/contrib/restricted/boost/container/CMakeLists.linux.txt index 59467d219d9..8478a2b4757 100644 --- a/contrib/restricted/boost/container/CMakeLists.linux.txt +++ b/contrib/restricted/boost/container/CMakeLists.linux.txt @@ -9,7 +9,7 @@ add_library(restricted-boost-container) target_compile_options(restricted-boost-container PRIVATE - -Wno-everything + $<IF:$<CXX_COMPILER_ID:MSVC>,,-Wno-everything> ) target_include_directories(restricted-boost-container PUBLIC ${CMAKE_SOURCE_DIR}/contrib/restricted/boost/container/include |