1
0
Fork 0
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:
Brian Fiete 2023-07-27 09:17:44 -07:00
parent 98e498bdf5
commit c8ca955e5b

View file

@ -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;
}
}