Skip to content

Commit c8b00c0

Browse files
committed
SCons: Fix broken msvc conditional
1 parent 0028fd6 commit c8b00c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

platform/windows/SCsub

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ if env["d3d12"]:
124124
Copy("$TARGET", "$SOURCE"),
125125
)
126126

127-
if not os.getenv("VCINSTALLDIR"):
127+
if not env.msvc:
128128
if env["debug_symbols"]:
129129
env.AddPostAction(prog, env.Run(platform_windows_builders.make_debug_mingw))
130130
if env["windows_subsystem"] == "gui":

0 commit comments

Comments
 (0)