Skip to content

Commit

Permalink
Enable arm64
Browse files Browse the repository at this point in the history
phunkyfish committed Feb 18, 2024
1 parent 10bb35a commit c607f76
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -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
4 changes: 2 additions & 2 deletions BuildAllPlatforms.ps1
Original file line number Diff line number Diff line change
@@ -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)]
4 changes: 2 additions & 2 deletions DoRelease.ps1
Original file line number Diff line number Diff line change
@@ -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)]

0 comments on commit c607f76

Please sign in to comment.