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 /library/cpp | |
parent | 8febb7430db23f80ae26a24cbfdc17e40ae3d1db (diff) | |
download | ydb-a9e5890a07cad8cfc475223eb12855a31ec8318a.tar.gz |
NO_COMPILER_WARNINGS in cmake msvc builds
Diffstat (limited to 'library/cpp')
-rw-r--r-- | library/cpp/balloc/CMakeLists.darwin.txt | 2 | ||||
-rw-r--r-- | library/cpp/balloc/CMakeLists.linux-aarch64.txt | 2 | ||||
-rw-r--r-- | library/cpp/balloc/CMakeLists.linux.txt | 2 | ||||
-rw-r--r-- | library/cpp/balloc/lib/CMakeLists.darwin.txt | 2 | ||||
-rw-r--r-- | library/cpp/balloc/lib/CMakeLists.linux-aarch64.txt | 2 | ||||
-rw-r--r-- | library/cpp/balloc/lib/CMakeLists.linux.txt | 2 | ||||
-rw-r--r-- | library/cpp/lfalloc/CMakeLists.darwin.txt | 2 | ||||
-rw-r--r-- | library/cpp/lfalloc/CMakeLists.linux.txt | 2 | ||||
-rw-r--r-- | library/cpp/lfalloc/yt/CMakeLists.darwin.txt | 2 |
9 files changed, 9 insertions, 9 deletions
diff --git a/library/cpp/balloc/CMakeLists.darwin.txt b/library/cpp/balloc/CMakeLists.darwin.txt index 2c4846bcb8..08814068d1 100644 --- a/library/cpp/balloc/CMakeLists.darwin.txt +++ b/library/cpp/balloc/CMakeLists.darwin.txt @@ -11,7 +11,7 @@ add_subdirectory(setup) add_library(library-cpp-balloc) target_compile_options(library-cpp-balloc PRIVATE - -Wno-everything + $<IF:$<CXX_COMPILER_ID:MSVC>,,-Wno-everything> ) target_link_libraries(library-cpp-balloc PUBLIC contrib-libs-cxxsupp diff --git a/library/cpp/balloc/CMakeLists.linux-aarch64.txt b/library/cpp/balloc/CMakeLists.linux-aarch64.txt index 110601bb08..8b703ab6d4 100644 --- a/library/cpp/balloc/CMakeLists.linux-aarch64.txt +++ b/library/cpp/balloc/CMakeLists.linux-aarch64.txt @@ -11,7 +11,7 @@ add_subdirectory(setup) add_library(library-cpp-balloc) target_compile_options(library-cpp-balloc PRIVATE - -Wno-everything + $<IF:$<CXX_COMPILER_ID:MSVC>,,-Wno-everything> ) target_link_libraries(library-cpp-balloc PUBLIC contrib-libs-linux-headers diff --git a/library/cpp/balloc/CMakeLists.linux.txt b/library/cpp/balloc/CMakeLists.linux.txt index 110601bb08..8b703ab6d4 100644 --- a/library/cpp/balloc/CMakeLists.linux.txt +++ b/library/cpp/balloc/CMakeLists.linux.txt @@ -11,7 +11,7 @@ add_subdirectory(setup) add_library(library-cpp-balloc) target_compile_options(library-cpp-balloc PRIVATE - -Wno-everything + $<IF:$<CXX_COMPILER_ID:MSVC>,,-Wno-everything> ) target_link_libraries(library-cpp-balloc PUBLIC contrib-libs-linux-headers diff --git a/library/cpp/balloc/lib/CMakeLists.darwin.txt b/library/cpp/balloc/lib/CMakeLists.darwin.txt index 8e1e7a84cb..0444876681 100644 --- a/library/cpp/balloc/lib/CMakeLists.darwin.txt +++ b/library/cpp/balloc/lib/CMakeLists.darwin.txt @@ -9,7 +9,7 @@ add_library(cpp-balloc-lib) target_compile_options(cpp-balloc-lib PRIVATE - -Wno-everything + $<IF:$<CXX_COMPILER_ID:MSVC>,,-Wno-everything> ) target_link_libraries(cpp-balloc-lib PUBLIC contrib-libs-cxxsupp diff --git a/library/cpp/balloc/lib/CMakeLists.linux-aarch64.txt b/library/cpp/balloc/lib/CMakeLists.linux-aarch64.txt index 647ad5f6ba..78dd3d4b90 100644 --- a/library/cpp/balloc/lib/CMakeLists.linux-aarch64.txt +++ b/library/cpp/balloc/lib/CMakeLists.linux-aarch64.txt @@ -9,7 +9,7 @@ add_library(cpp-balloc-lib) target_compile_options(cpp-balloc-lib PRIVATE - -Wno-everything + $<IF:$<CXX_COMPILER_ID:MSVC>,,-Wno-everything> ) target_link_libraries(cpp-balloc-lib PUBLIC contrib-libs-linux-headers diff --git a/library/cpp/balloc/lib/CMakeLists.linux.txt b/library/cpp/balloc/lib/CMakeLists.linux.txt index 647ad5f6ba..78dd3d4b90 100644 --- a/library/cpp/balloc/lib/CMakeLists.linux.txt +++ b/library/cpp/balloc/lib/CMakeLists.linux.txt @@ -9,7 +9,7 @@ add_library(cpp-balloc-lib) target_compile_options(cpp-balloc-lib PRIVATE - -Wno-everything + $<IF:$<CXX_COMPILER_ID:MSVC>,,-Wno-everything> ) target_link_libraries(cpp-balloc-lib PUBLIC contrib-libs-linux-headers diff --git a/library/cpp/lfalloc/CMakeLists.darwin.txt b/library/cpp/lfalloc/CMakeLists.darwin.txt index 0ed088d373..c5ee648844 100644 --- a/library/cpp/lfalloc/CMakeLists.darwin.txt +++ b/library/cpp/lfalloc/CMakeLists.darwin.txt @@ -12,7 +12,7 @@ add_subdirectory(yt) add_library(library-cpp-lfalloc) target_compile_options(library-cpp-lfalloc PRIVATE - -Wno-everything + $<IF:$<CXX_COMPILER_ID:MSVC>,,-Wno-everything> ) target_link_libraries(library-cpp-lfalloc PUBLIC contrib-libs-cxxsupp diff --git a/library/cpp/lfalloc/CMakeLists.linux.txt b/library/cpp/lfalloc/CMakeLists.linux.txt index 8d6d385cae..de6f97ec6a 100644 --- a/library/cpp/lfalloc/CMakeLists.linux.txt +++ b/library/cpp/lfalloc/CMakeLists.linux.txt @@ -11,7 +11,7 @@ add_subdirectory(dbg_info) add_library(library-cpp-lfalloc) target_compile_options(library-cpp-lfalloc PRIVATE - -Wno-everything + $<IF:$<CXX_COMPILER_ID:MSVC>,,-Wno-everything> ) target_link_libraries(library-cpp-lfalloc PUBLIC contrib-libs-linux-headers diff --git a/library/cpp/lfalloc/yt/CMakeLists.darwin.txt b/library/cpp/lfalloc/yt/CMakeLists.darwin.txt index 751d2c05df..ab5c2e2e91 100644 --- a/library/cpp/lfalloc/yt/CMakeLists.darwin.txt +++ b/library/cpp/lfalloc/yt/CMakeLists.darwin.txt @@ -10,7 +10,7 @@ add_library(cpp-lfalloc-yt) target_compile_options(cpp-lfalloc-yt PRIVATE -DLFALLOC_YT - -Wno-everything + $<IF:$<CXX_COMPILER_ID:MSVC>,,-Wno-everything> ) target_link_libraries(cpp-lfalloc-yt PUBLIC contrib-libs-cxxsupp |