mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-22 13:55:38 +00:00
Qt: Ensure svg image format plugin gets included
For some reason, it doesn't on the CI universal builds..
This commit is contained in:
parent
a365fdd252
commit
d941df983e
|
@ -33,6 +33,11 @@ unset MACOSX_DEPLOYMENT_TARGET
|
||||||
BINPATH=bin/DuckStation.app/Contents/MacOS/DuckStation
|
BINPATH=bin/DuckStation.app/Contents/MacOS/DuckStation
|
||||||
lipo -create "build-x64/$BINPATH" "build-arm64/$BINPATH" -o "build-x64/$BINPATH"
|
lipo -create "build-x64/$BINPATH" "build-arm64/$BINPATH" -o "build-x64/$BINPATH"
|
||||||
|
|
||||||
|
# For some reason, the svg image format plugin doesn't get included in combined builds...
|
||||||
|
if [ -f $HOME/deps/plugins/imageformats/libqsvg.dylib ]; then
|
||||||
|
cp -v -n $HOME/deps/plugins/imageformats/libqsvg.dylib build-x64/bin/DuckStation.app/Contents/PlugIns/imageformats
|
||||||
|
fi
|
||||||
|
|
||||||
echo "Grab app..."
|
echo "Grab app..."
|
||||||
mv build-x64/bin/DuckStation.app .
|
mv build-x64/bin/DuckStation.app .
|
||||||
rm -fr build-x64 build-arm64
|
rm -fr build-x64 build-arm64
|
||||||
|
|
Loading…
Reference in a new issue