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
This commit is contained in:
TellowKrinkle 2024-04-14 18:28:54 -05:00 committed by Connor McLaughlin
parent 0ccf8a7775
commit e48c68d80f
1 changed files with 1 additions and 1 deletions

View File

@ -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 ..