[cmake] enable clang-cl and WoA builds #348

Merged
crueter merged 31 commits from liz-clang-cl-cmake into master 2025-09-09 20:47:51 +02:00
Showing only changes of commit 1cdec229aa - Show all commits

View file

@ -65,6 +65,14 @@ if (mbedtls_ADDED)
-Wno-unused-but-set-variable -Wno-unused-but-set-variable
-Wno-string-concatenation -Wno-string-concatenation
) )
elseif(CXX_CLANG)
foreach(TARGET mbedtls mbedcrypto mbedx509)
target_compile_options(${TARGET} PRIVATE
-Wno-switch-default
-Wno-undef
-Wno-unused-macros
)
endforeach()
endif() endif()
endif() endif()