From cc53d59532ea0dc1e6b3403fc7e2fe1bca9c2bc9 Mon Sep 17 00:00:00 2001 From: Max Parry <66670928+Buggem@users.noreply.github.com> Date: Mon, 28 Oct 2024 20:58:46 +1100 Subject: [PATCH] gha: adds SDL2 to OSX builds (resolves #1791) (#1855) * updated build_apple.sh to copy over SDL2 from the Frameworks folder that it was installed in by dep_apple.sh --- scripts/gha/build_apple.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/gha/build_apple.sh b/scripts/gha/build_apple.sh index b0462d36..3be0506b 100755 --- a/scripts/gha/build_apple.sh +++ b/scripts/gha/build_apple.sh @@ -10,5 +10,7 @@ popd ./waf configure --enable-utils --enable-tests --enable-lto build install --destdir=bin || die_configure +cp -vr /Library/Frameworks/SDL2.framework bin + mkdir -p artifacts/ tar -cJvf artifacts/xash3d-fwgs-apple-$ARCH.tar.xz -C bin . # skip the bin directory from resulting tar archive