From c607f765b3e5a28ce959a57f2b77889f4b5cab6b Mon Sep 17 00:00:00 2001
From: phunkyfish <phunkyfish@gmail.com>
Date: Sun, 18 Feb 2024 18:06:26 +0000
Subject: [PATCH] Enable arm64

---
 .github/workflows/build.yml | 2 +-
 BuildAllPlatforms.ps1       | 4 ++--
 DoRelease.ps1               | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 8d123f6..b2854ce 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -16,7 +16,7 @@ jobs:
     strategy:
       fail-fast: true
       matrix:
-        arch: [win32, x64, arm]
+        arch: [win32, x64, arm, arm64]
         platform: [-App, -Desktop]
         exclude:
           - arch: arm
diff --git a/BuildAllPlatforms.ps1 b/BuildAllPlatforms.ps1
index 59af790..5b2ae19 100644
--- a/BuildAllPlatforms.ps1
+++ b/BuildAllPlatforms.ps1
@@ -75,8 +75,8 @@ Param(
   [switch] $Rebuild = $false,
   [switch] $Desktop = $false,
   [switch] $App = $false,
-  [ValidateSet( 'arm', 'win32', 'x64' )]
-  [string[]] $Platforms = @( 'arm', 'win32', 'x64' ),
+  [ValidateSet( 'arm', 'win32', 'x64', 'arm64' )]
+  [string[]] $Platforms = @( 'arm', 'win32', 'x64', 'arm64' ),
   [ValidateSet('10.0.17763.0', '10.0.18362.0')]
   [string] $SdkVersion = '10.0.18362.0',
   [ValidateSet(15, 16)]
diff --git a/DoRelease.ps1 b/DoRelease.ps1
index e7e73cf..1453254 100644
--- a/DoRelease.ps1
+++ b/DoRelease.ps1
@@ -3,8 +3,8 @@ Param(
   [switch] $Desktop,
   [switch] $App,
   [switch] $NoClean,
-  [ValidateSet( 'arm', 'win32', 'x64' )]
-  [string[]] $Platforms = @( 'arm', 'win32', 'x64' ),
+  [ValidateSet( 'arm', 'win32', 'x64', 'arm64' )]
+  [string[]] $Platforms = @( 'arm', 'win32', 'x64', 'arm64' ),
   [ValidateSet('10.0.17763.0', '10.0.18362.0')]
   [string] $SdkVersion = '10.0.18362.0',
   [ValidateSet(15, 16)]