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:
@@ -47,13 +47,13 @@ def get_doc_path():
|
||||
|
||||
|
||||
def get_flags():
|
||||
return [
|
||||
("arch", "arm64"), # Default for convenience.
|
||||
("target", "template_debug"),
|
||||
("use_volk", False),
|
||||
("supported", ["mono"]),
|
||||
("builtin_pcre2_with_jit", False),
|
||||
]
|
||||
return {
|
||||
"arch": "arm64", # Default for convenience.
|
||||
"target": "template_debug",
|
||||
"use_volk": False,
|
||||
"supported": ["mono"],
|
||||
"builtin_pcre2_with_jit": False,
|
||||
}
|
||||
|
||||
|
||||
def configure(env: "SConsEnvironment"):
|
||||
|
||||
Reference in New Issue
Block a user