From 93c143d79db55fde34cca8f5ca64812f26cf398c Mon Sep 17 00:00:00 2001 From: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com> Date: Sun, 24 Nov 2024 18:33:13 +0200 Subject: [PATCH] Silence some clang-cl warnings --- CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index c5e76d5a..095a2811 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -189,6 +189,11 @@ if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang" AND MSVC) add_subdirectory(third_party/cryptoppwin) include_directories(third_party/cryptoppwin/include) target_link_libraries(AlberCore PRIVATE cryptoppwin) + + # Also silence some of clang-cl's more... intrusive warnings + set(WARNING_FLAGS "/W1 -Wno-unused-function -Wno-unused-but-set-variable -Wno-reorder-ctor") + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${WARNING_FLAGS}") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${WARNING_FLAGS}") else() set(CRYPTOPP_BUILD_TESTING OFF)