summaryrefslogtreecommitdiffstats
path: root/platform/uwp/detect.py
diff options
context:
space:
mode:
authorHugo Locurcio <hugo.locurcio@hugo.pro>2020-09-14 19:56:41 +0200
committerHugo Locurcio <hugo.locurcio@hugo.pro>2020-09-14 21:52:04 +0200
commit4df86f8b048a977fed51891849859b8171e1a18b (patch)
tree46e6d3c842d34093a72953e950484f07ac5352b0 /platform/uwp/detect.py
parentc5f7a581f7247f599b07b0346062db39e52c7d5a (diff)
downloadredot-engine-4df86f8b048a977fed51891849859b8171e1a18b.tar.gz
Only display the Windows toggle console option if it can actually be used
Diffstat (limited to 'platform/uwp/detect.py')
-rw-r--r--platform/uwp/detect.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/platform/uwp/detect.py b/platform/uwp/detect.py
index 04b743f2c8..a7ca26c16c 100644
--- a/platform/uwp/detect.py
+++ b/platform/uwp/detect.py
@@ -65,12 +65,14 @@ def configure(env):
env.Append(CCFLAGS=["/MD"])
env.Append(CPPDEFINES=["DEBUG_ENABLED"])
env.Append(LINKFLAGS=["/SUBSYSTEM:CONSOLE"])
+ env.AppendUnique(CPPDEFINES=["WINDOWS_SUBSYSTEM_CONSOLE"])
elif env["target"] == "debug":
env.Append(CCFLAGS=["/Zi"])
env.Append(CCFLAGS=["/MDd"])
env.Append(CPPDEFINES=["DEBUG_ENABLED"])
env.Append(LINKFLAGS=["/SUBSYSTEM:CONSOLE"])
+ env.AppendUnique(CPPDEFINES=["WINDOWS_SUBSYSTEM_CONSOLE"])
env.Append(LINKFLAGS=["/DEBUG"])
## Compiler configuration