You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
SCons: Convert platform get_flags to dictionary
This commit is contained in:
@@ -248,10 +248,10 @@ def get_doc_path():
|
||||
def get_flags():
|
||||
arch = detect_build_env_arch() or detect_arch()
|
||||
|
||||
return [
|
||||
("arch", arch),
|
||||
("supported", ["mono"]),
|
||||
]
|
||||
return {
|
||||
"arch": arch,
|
||||
"supported": ["mono"],
|
||||
}
|
||||
|
||||
|
||||
def build_res_file(target, source, env: "SConsEnvironment"):
|
||||
|
||||
Reference in New Issue
Block a user