summaryrefslogtreecommitdiffstats
path: root/platform/windows/detect.py
diff options
context:
space:
mode:
Diffstat (limited to 'platform/windows/detect.py')
-rw-r--r--platform/windows/detect.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/platform/windows/detect.py b/platform/windows/detect.py
index b66cdadc41..0d3e9c606e 100644
--- a/platform/windows/detect.py
+++ b/platform/windows/detect.py
@@ -248,10 +248,10 @@ def get_doc_path():
def get_flags():
arch = detect_build_env_arch() or detect_arch()
- return [
- ("arch", arch),
- ("supported", ["mono"]),
- ]
+ return {
+ "arch": arch,
+ "supported": ["mono"],
+ }
def build_res_file(target, source, env: "SConsEnvironment"):