Cleanup: disable -Weverything for clang under extern/

This is very noisy and didn't result in useful warnings.
This commit is contained in:
Campbell Barton
2023-07-05 13:20:53 +10:00
parent a4583f1cb8
commit 25cc1b3029

View File

@@ -14,6 +14,10 @@ if(CMAKE_COMPILER_IS_GNUCC)
remove_cc_flag(
"-Wmisleading-indentation"
)
elseif(CMAKE_C_COMPILER_ID MATCHES "Clang")
remove_cc_flag(
"-Weverything"
)
endif()