Add support for using other VC++ toolset for Window and add cmd arg for selecting compiler manually

This commit is contained in:
Wojtek Figat
2021-02-17 10:58:58 +01:00
parent 1530f91944
commit 25f61e931e
3 changed files with 14 additions and 1 deletions

View File

@@ -20,7 +20,7 @@ namespace Flax.Build.Platforms
/// <param name="platform">The platform.</param>
/// <param name="architecture">The target architecture.</param>
public WindowsToolchain(WindowsPlatform platform, TargetArchitecture architecture)
: base(platform, architecture, WindowsPlatformToolset.v140, WindowsPlatformSDK.Latest)
: base(platform, architecture, WindowsPlatformToolset.Latest, WindowsPlatformSDK.Latest)
{
}