Cleanup: suppress "extra" warnings for CLANG in extern/

These are additional warnings to -Wall and generally aren't worth
suppressing for code maintained externally.
This commit is contained in:
Campbell Barton
2025-04-01 00:49:35 +00:00
parent bcdcc3dbde
commit e83dee1b8f

View File

@@ -17,6 +17,7 @@ if(CMAKE_COMPILER_IS_GNUCC)
elseif(CMAKE_C_COMPILER_ID MATCHES "Clang")
remove_cc_flag(
"-Weverything"
"-Wextra"
)
endif()