From 6a3a2a366febd558e8c11ab99783e446b76cc647 Mon Sep 17 00:00:00 2001 From: Diavolo Date: Mon, 4 Mar 2024 11:56:52 +0100 Subject: [PATCH] build: add arm64 for the Windows platform --- .github/workflows/build.yml | 3 +++ premake5.lua | 5 ----- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fc6d6af..c22101d 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 7c48028..8be85c4 100644 --- a/premake5.lua +++ b/premake5.lua @@ -90,10 +90,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 @@ -142,6 +138,5 @@ filter {} dependencies.imports() - group "Dependencies" dependencies.projects()