mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-14 22:34:09 +02:00
Added target triple support for more useful cross compilation
This commit is contained in:
parent
22ec4a86b8
commit
3bf4c792d8
15 changed files with 145 additions and 124 deletions
|
@ -1235,8 +1235,10 @@ namespace IDE
|
|||
public void SetupDefaultConfigs()
|
||||
{
|
||||
List<String> platforms = scope List<String>();
|
||||
platforms.Add(IDEApp.sPlatform32Name);
|
||||
platforms.Add(IDEApp.sPlatform64Name);
|
||||
if (IDEApp.sPlatform32Name != null)
|
||||
platforms.Add(IDEApp.sPlatform32Name);
|
||||
if (IDEApp.sPlatform64Name != null)
|
||||
platforms.Add(IDEApp.sPlatform64Name);
|
||||
|
||||
List<String> configs = scope List<String>();
|
||||
configs.Add("Debug");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue