From 2e7ffa606b54ae6b78325a96233fe6b6af0bec97 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Wed, 30 Mar 2022 22:43:31 -0500 Subject: [PATCH] Fix missing DLL in ARM64 builds --- scripts/build-arch.bat | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/scripts/build-arch.bat b/scripts/build-arch.bat index a925d2c7..64a72d65 100644 --- a/scripts/build-arch.bat +++ b/scripts/build-arch.bat @@ -136,11 +136,9 @@ echo Copying DLL dependencies copy %SOURCE_ROOT%\libs\windows\lib\%ARCH%\*.dll %DEPLOY_FOLDER% if !ERRORLEVEL! NEQ 0 goto Error -if /I "%ARCH%" NEQ "ARM64" ( - echo Copying AntiHooking.dll - copy %BUILD_FOLDER%\AntiHooking\%BUILD_CONFIG%\AntiHooking.dll %DEPLOY_FOLDER% - if !ERRORLEVEL! NEQ 0 goto Error -) +echo Copying AntiHooking.dll +copy %BUILD_FOLDER%\AntiHooking\%BUILD_CONFIG%\AntiHooking.dll %DEPLOY_FOLDER% +if !ERRORLEVEL! NEQ 0 goto Error echo Copying GC mapping list copy %SOURCE_ROOT%\app\SDL_GameControllerDB\gamecontrollerdb.txt %DEPLOY_FOLDER%