mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 12:32:20 +02:00
Fix ToolsetType.GetDefaultFor
This commit is contained in:
parent
98e498bdf5
commit
c8ca955e5b
1 changed files with 5 additions and 2 deletions
|
@ -185,10 +185,13 @@ namespace IDE
|
|||
|
||||
public static ToolsetType GetDefaultFor(PlatformType platformType, bool isRelease)
|
||||
{
|
||||
if (isRelease)
|
||||
return .LLVM;
|
||||
if (platformType == .Windows)
|
||||
{
|
||||
if (isRelease)
|
||||
return .LLVM;
|
||||
return .Microsoft;
|
||||
}
|
||||
|
||||
return .GNU;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue