mirror of
https://github.com/godotengine/godot.git
synced 2025-10-27 11:44:21 +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
|
|
@ -65,10 +65,10 @@ def get_doc_path():
|
|||
|
||||
|
||||
def get_flags():
|
||||
return [
|
||||
("arch", detect_arch()),
|
||||
("supported", ["mono"]),
|
||||
]
|
||||
return {
|
||||
"arch": detect_arch(),
|
||||
"supported": ["mono"],
|
||||
}
|
||||
|
||||
|
||||
def configure(env: "SConsEnvironment"):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue