-
-
Notifications
You must be signed in to change notification settings - Fork 21.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix project generation logic for Rider to support any OS without MSVC…
… toolchain
- Loading branch information
Showing
6 changed files
with
95 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Tuples with the name of the arch | ||
def get_platforms(): | ||
return [("arm64", "arm64"), ("x86_64", "x86_64")] | ||
|
||
|
||
def get_configurations(): | ||
return ["editor", "template_debug", "template_release"] | ||
|
||
|
||
# results are not needed on Mac and Linux | ||
def get_build_prefix(env): | ||
return [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Tuples with the name of the arch | ||
def get_platforms(): | ||
return [("arm64", "arm64"), ("x86_64", "x86_64")] | ||
|
||
|
||
def get_configurations(): | ||
return ["editor", "template_debug", "template_release"] | ||
|
||
|
||
# results are not needed on Mac and Linux | ||
def get_build_prefix(env): | ||
return [] |