SCons: Convert platform get_flags to dictionary

This commit is contained in:
Thaddeus Crews 2024-05-19 09:41:03 -05:00
parent 8e2141eac5
commit 896b003cc8
No known key found for this signature in database
GPG key ID: 62181B86FE9E5D84
7 changed files with 38 additions and 36 deletions

View file

@ -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