SCons: Add emitter to declutter build objects

This commit is contained in:
Thaddeus Crews 2025-01-13 11:13:17 -06:00
parent 0028fd625e
commit 10ed66f28c
No known key found for this signature in database
GPG key ID: 62181B86FE9E5D84
7 changed files with 50 additions and 11 deletions

View file

@ -278,7 +278,7 @@ def configure_msvc(env: "SConsEnvironment"):
from tempfile import mkstemp
# Ensure we have a location to write captured output to, in case of false positives.
capture_path = methods.base_folder_path + "platform/windows/msvc_capture.log"
capture_path = methods.base_folder / "platform" / "windows" / "msvc_capture.log"
with open(capture_path, "wt", encoding="utf-8"):
pass