mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
12 lines
238 B
Python
12 lines
238 B
Python
![]() |
# Tuples with the name of the arch
|
||
|
def get_platforms():
|
||
|
return [("arm64", "arm64"), ("x64", "x86_64")]
|
||
|
|
||
|
|
||
|
def get_configurations():
|
||
|
return ["editor", "template_debug", "template_release"]
|
||
|
|
||
|
|
||
|
def get_build_prefix(env):
|
||
|
return []
|