diff options
Diffstat (limited to 'macosx/make-app-bundle.sh')
-rwxr-xr-x | macosx/make-app-bundle.sh | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/macosx/make-app-bundle.sh b/macosx/make-app-bundle.sh index 9265eeb9..d04dc1bd 100755 --- a/macosx/make-app-bundle.sh +++ b/macosx/make-app-bundle.sh @@ -38,9 +38,9 @@ cp "$dir/PkgInfo" "$install/$APPNAME.app/Contents/" mkdir -p "$install/$APPNAME.app/Contents/MacOS/Plugins" cp -r "$install/Plugins" "$install/$APPNAME.app/Contents/MacOS/" -# Add framework and other libraries and fixup other libraries +# Use either of these, two of them at the same time will break things! macdeployqt "$install/$APPNAME.app" -libpath="$install/Library" -sh "$dir/install-fail-tool" "$install/$APPNAME.app/Contents/Frameworks" +#sh "$dir/install-fail-tool" "$install/$APPNAME.app/Contents/Frameworks" # Create an 512 resolution size for the icon (for retina displays mostly) #gm convert -size 512x512 "$dir/../gui/images/opentrack.png" "$tmp/opentrack.png" @@ -74,7 +74,6 @@ create-dmg \ --hide-extension "$APPNAME.app" \ --no-internet-enable \ --add-folder "Document" "$install/doc" 20 40 \ - --add-folder "source-code" "$install/source-code" 220 40 \ --add-folder "Xplane-Plugin" "$install/xplane" 420 40 \ --add-folder "thirdparty" "$install/thirdparty" 620 40 \ "$version.dmg" \ |