diff --git a/IDE/src/Workspace.bf b/IDE/src/Workspace.bf index 36937c90..349665a5 100644 --- a/IDE/src/Workspace.bf +++ b/IDE/src/Workspace.bf @@ -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; } }