1# Tuples with the name of the arch 2def get_platforms(): 3 return [("arm64", "arm64"), ("x64", "x86_64")] 4 5 6def get_configurations(): 7 return ["editor", "template_debug", "template_release"] 8 9 10def get_build_prefix(env): 11 return [] 12 13