From f0504140d046789edd581cf33b8d86c3b974846e Mon Sep 17 00:00:00 2001 From: FutureRave Date: Mon, 4 Mar 2024 11:43:42 +0100 Subject: [PATCH] build: experiment with arm64 on Windows --- .github/workflows/build.yml | 3 +++ premake5.lua | 6 +----- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ac0b499..567a697 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 diff --git a/premake5.lua b/premake5.lua index 288338f..afce600 100644 --- a/premake5.lua +++ b/premake5.lua @@ -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