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/android/detect.py | |
parent | 8e2141eac534f6984bb0bdbcefbd17de27ae0993 (diff) | |
download | redot-engine-896b003cc8ac1827ae4f4678ca1bcaa2ce42f24e.tar.gz |
SCons: Convert platform `get_flags` to dictionary
Diffstat (limited to 'platform/android/detect.py')
-rw-r--r-- | platform/android/detect.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/platform/android/detect.py b/platform/android/detect.py index 485f31dee2..ed0ceb5862 100644 --- a/platform/android/detect.py +++ b/platform/android/detect.py @@ -67,11 +67,11 @@ def get_min_target_api(): def get_flags(): - return [ - ("arch", "arm64"), # Default for convenience. - ("target", "template_debug"), - ("supported", ["mono"]), - ] + return { + "arch": "arm64", # Default for convenience. + "target": "template_debug", + "supported": ["mono"], + } # Check if Android NDK version is installed |