Skip to content

Commit

Permalink
LEGO Island preset - pass /TP (C++) compiler flag (#840)
Browse files Browse the repository at this point in the history
LEGO Island is C++ code.
  • Loading branch information
ItzSwirlz authored Sep 8, 2023
1 parent b890a0f commit a426496
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/coreapp/compilers.py
Original file line number Diff line number Diff line change
Expand Up @@ -1767,7 +1767,7 @@ def preset_from_name(name: str) -> Optional[Preset]:
"-x c++ -O2 -gstabs -fno-exceptions -finline-functions",
),
# Windows
Preset("LEGO Island", MSVC42, "/W3 /GX /O2"),
Preset("LEGO Island", MSVC42, "/W3 /GX /O2 /TP"),
Preset("Touhou 6 (C)", MSVC70, "/MT /G5 /GS /Od /Oi /Ob1"),
Preset("Touhou 6 (C++)", MSVC70, "/MT /G5 /GS /Od /Oi /Ob1 /TP"),
]
Expand Down

0 comments on commit a426496

Please sign in to comment.