mirror of
https://github.com/nefarius/ViGEmBus.git
synced 2025-08-10 00:52:17 +00:00
Added ARM64 to build script
This commit is contained in:
@@ -52,9 +52,12 @@ class Build : NukeBuild
|
||||
|
||||
var platform = MSBuildTargetPlatform.x64;
|
||||
|
||||
if (AppVeyor.Instance.Platform != null && AppVeyor.Instance.Platform.Equals("x86"))
|
||||
if (AppVeyor.Instance.Platform is "x86")
|
||||
platform = MSBuildTargetPlatform.Win32;
|
||||
|
||||
if (AppVeyor.Instance.Platform is "ARM64")
|
||||
platform = (MSBuildTargetPlatform) "ARM64";
|
||||
|
||||
MSBuild(s => s
|
||||
.SetTargetPath(DmfSolution)
|
||||
.SetTargets("Build")
|
||||
|
||||
Reference in New Issue
Block a user