comparison deploy/osx/copy-qt.sh @ 731:2cb03c4665aa

Include kdiff3 executable in bundle on macOS
author Chris Cannam
date Mon, 17 Dec 2018 11:18:55 +0000
parents 5afb26b7575a
children
comparison
equal deleted inserted replaced
730:f1dc72b940d5 731:2cb03c4665aa
1
2 #!/bin/bash 1 #!/bin/bash
3
4 set -eu
5 2
6 app="$1" 3 app="$1"
7 if [ -z "$app" ]; then 4 if [ -z "$app" ]; then
8 echo "Usage: $0 <appname>" 5 echo "Usage: $0 <appname>"
9 echo "Provide appname without the .app extension, please" 6 echo "Provide appname without the .app extension, please"
10 exit 2 7 exit 2
11 fi 8 fi
9
10 set -eu
12 11
13 frameworks="QtCore QtNetwork QtGui QtWidgets QtPrintSupport QtDBus" 12 frameworks="QtCore QtNetwork QtGui QtWidgets QtPrintSupport QtDBus"
14 13
15 plugins="gif icns ico jpeg tga tiff wbmp webp cocoa macstyle minimal offscreen" 14 plugins="gif icns ico jpeg tga tiff wbmp webp cocoa macstyle minimal offscreen"
16 15