mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Fix .sln project generation logic for Rider to support all OS and all C++ toolchains
Co-authored-by: Andreia Gaita <shana@spoiledcat.net> Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
This commit is contained in:
parent
e585e6a3eb
commit
6ff86e49cf
8 changed files with 137 additions and 36 deletions
11
platform/linuxbsd/msvs.py
Normal file
11
platform/linuxbsd/msvs.py
Normal file
|
@ -0,0 +1,11 @@
|
|||
# Tuples with the name of the arch
|
||||
def get_platforms():
|
||||
return [("x64", "x86_64")]
|
||||
|
||||
|
||||
def get_configurations():
|
||||
return ["editor", "template_debug", "template_release"]
|
||||
|
||||
|
||||
def get_build_prefix(env):
|
||||
return []
|
Loading…
Add table
Add a link
Reference in a new issue