Skip to content

Commit

Permalink
Merge pull request #80547 from DarioSamo/windows-subsystem-console
Browse files Browse the repository at this point in the history
SCons: Carry over the `windows_subsystem` setting to the generated vsproj
  • Loading branch information
akien-mga committed Aug 14, 2023
2 parents 06eaa8c + cda4b4e commit 122f373
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions methods.py
Original file line number Diff line number Diff line change
Expand Up @@ -868,6 +868,9 @@ def build_commandline(self, commands):
if env["custom_modules"]:
common_build_postfix.append("custom_modules=%s" % env["custom_modules"])

if env["windows_subsystem"] == "console":
common_build_postfix.append("windows_subsystem=console")

if env["precision"] == "double":
common_build_postfix.append("precision=double")

Expand Down

0 comments on commit 122f373

Please sign in to comment.