Skip to content

Commit

Permalink
Set silence_msvc default to false, amend description
Browse files Browse the repository at this point in the history
  • Loading branch information
Repiteo committed Mar 4, 2024
1 parent a07dd0d commit 581315a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion platform/windows/detect.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,9 @@ def get_opts():
BoolVariable("use_asan", "Use address sanitizer (ASAN)", False),
BoolVariable("debug_crt", "Compile with MSVC's debug CRT (/MDd)", False),
BoolVariable("incremental_link", "Use MSVC incremental linking. May increase or decrease build times.", False),
BoolVariable("silence_msvc", "Silence MSVC's stdout. Decreases output log bloat by roughly half.", True),
BoolVariable(
"silence_msvc", "Silence MSVC's stdout to decrease output log bloat. May hide error messages.", False
),
("angle_libs", "Path to the ANGLE static libraries", ""),
# Direct3D 12 support.
(
Expand Down

0 comments on commit 581315a

Please sign in to comment.