From e48c68d80f529cc2d6b4141878fbcc726ef6f8e2 Mon Sep 17 00:00:00 2001 From: TellowKrinkle Date: Sun, 14 Apr 2024 18:28:54 -0500 Subject: [PATCH] CI:mac: Disable libpng framework build PCSX2 and Qt were disagreeing on which libpng to pick (framework or dylib), and wasting space putting both in the app --- .github/workflows/scripts/macos/build-dependencies.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/scripts/macos/build-dependencies.sh b/.github/workflows/scripts/macos/build-dependencies.sh index 4073722bc0..cea7f7a216 100755 --- a/.github/workflows/scripts/macos/build-dependencies.sh +++ b/.github/workflows/scripts/macos/build-dependencies.sh @@ -148,7 +148,7 @@ echo "Installing libpng..." rm -fr "libpng-$LIBPNG" tar xf "libpng-$LIBPNG.tar.xz" cd "libpng-$LIBPNG" -cmake "${CMAKE_COMMON[@]}" -DBUILD_SHARED_LIBS=ON -DPNG_TESTS=OFF -B build +cmake "${CMAKE_COMMON[@]}" -DBUILD_SHARED_LIBS=ON -DPNG_TESTS=OFF -DPNG_FRAMEWORK=OFF -B build make -C build "-j$NPROCS" make -C build install cd ..