diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-05-19 09:41:03 -0500 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-05-22 13:53:20 -0500 |
commit | 896b003cc8ac1827ae4f4678ca1bcaa2ce42f24e (patch) | |
tree | 81f43222f70b7fe9ef9391528805a47838873d03 /platform/ios | |
parent | 8e2141eac534f6984bb0bdbcefbd17de27ae0993 (diff) | |
download | redot-engine-896b003cc8ac1827ae4f4678ca1bcaa2ce42f24e.tar.gz |
SCons: Convert platform `get_flags` to dictionary
Diffstat (limited to 'platform/ios')
-rw-r--r-- | platform/ios/detect.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/platform/ios/detect.py b/platform/ios/detect.py index eb233a5d54..35e1b9cd6d 100644 --- a/platform/ios/detect.py +++ b/platform/ios/detect.py @@ -47,13 +47,13 @@ def get_doc_path(): def get_flags(): - return [ - ("arch", "arm64"), # Default for convenience. - ("target", "template_debug"), - ("use_volk", False), - ("supported", ["mono"]), - ("builtin_pcre2_with_jit", False), - ] + return { + "arch": "arm64", # Default for convenience. + "target": "template_debug", + "use_volk": False, + "supported": ["mono"], + "builtin_pcre2_with_jit": False, + } def configure(env: "SConsEnvironment"): |