mirror of
https://github.com/godotengine/godot.git
synced 2025-11-01 14:11:15 +00:00
SCons: Convert platform get_flags to dictionary
This commit is contained in:
parent
8e2141eac5
commit
896b003cc8
7 changed files with 38 additions and 36 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue