Remove useless MSVC flag

CMake only passes a single file at a time anyway
This commit is contained in:
ISSOtm
2026-03-14 15:36:59 -04:00
committed by Rangi
parent cd64de9323
commit 34e1f8dcc5

View File

@@ -27,7 +27,6 @@ cmake_dependent_option(MORE_WARNINGS "Turn on more warnings" OFF !MSVC OFF)
if(MSVC) if(MSVC)
add_compile_options( add_compile_options(
/MP # Build multiple files in parallel.
/wd5030 # Warning C5030 is about unknown attributes (`[[gnu::ATTR]]`), none of ours being load-bearing. /wd5030 # Warning C5030 is about unknown attributes (`[[gnu::ATTR]]`), none of ours being load-bearing.
/wd4996 # Warning C4996 is about using POSIX names, which we want to do for portability. /wd4996 # Warning C4996 is about using POSIX names, which we want to do for portability.
/Zc:preprocessor # Opt into the C++20-conformant preprocessor. /Zc:preprocessor # Opt into the C++20-conformant preprocessor.