msvs.py 218 B

123456789101112
  1. # Tuples with the name of the arch
  2. def get_platforms():
  3. return [("x64", "x86_64")]
  4. def get_configurations():
  5. return ["editor", "template_debug", "template_release"]
  6. def get_build_prefix(env):
  7. return []