Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/platform/linuxbsd/msvs.py
10277 views
1
# Tuples with the name of the arch
2
def get_platforms():
3
return [("x64", "x86_64")]
4
5
6
def get_configurations():
7
return ["editor", "template_debug", "template_release"]
8
9
10
def get_build_prefix(env):
11
return []
12
13