cmake: Revert warning compiler flag for MSVC

MSVC does not implemented /Wall very well as it floods the output with a
plethora of warnings from system headers.

This greatly reduces compile performance so this change reverts /Wall
back to /W3.
This commit is contained in:
Martin Fleisz 2023-11-15 11:35:08 +01:00 committed by akallabeth
parent 412c5c4ba6
commit 1363462e7e

View File

@ -27,7 +27,7 @@ if (ENABLE_WARNING_VERBOSE)
endforeach()
set(C_WARNING_FLAGS
/Wall
/W3
)
else()
set(C_WARNING_FLAGS