build: experiment with arm64 on Windows (#17)

This commit is contained in:
6arelyFuture 2024-03-04 11:49:07 +01:00 committed by GitHub
parent 296b92d5fc
commit 2230f7ea46
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 5 deletions

View File

@ -28,9 +28,12 @@ jobs:
- release
arch:
- x64
- arm64
include:
- arch: x64
platform: x64
- arch: arm64
platform: arm64
steps:
- name: Check out files
uses: actions/checkout@main

View File

@ -44,7 +44,7 @@ cppdialect "C++20"
if os.istarget("darwin") then
platforms {"x64", "arm64"}
else
platforms {"x86", "x64"}
platforms {"x86", "x64", "arm64"}
end
filter "platforms:x86"
@ -85,10 +85,6 @@ filter { "system:macosx", "platforms:arm64" }
linkoptions "-arch arm64"
filter {}
if _OPTIONS["dev-build"] then
defines {"DEV_BUILD"}
end
if os.getenv("CI") then
defines "CI"
end