Mercurial > hg > sonic-visualiser
view deploy/osx/copy-qt.sh @ 1480:f1e1745acc3b 3.0-integration
Make the colour 3d plot renderer able to support more than one level of peak cache; introduce a second "peak" cache for the spectrogram layer that actually has a 1-1 column relationship with the underlying FFT model, and use it in addition to the existing peak cache if memory is plentiful. Makes spectrograms appear much faster in many common situations.
author | Chris Cannam |
---|---|
date | Thu, 05 Jan 2017 14:02:54 +0000 |
parents | 2451e7bb90af |
children | f7acd0c9ee8d |
line wrap: on
line source
#!/bin/bash set -eu app="$1" if [ -z "$app" ]; then echo "Usage: $0 <appname>" echo "Provide appname without the .app extension, please" exit 2 fi frameworks="QtCore QtNetwork QtGui QtXml QtSvg QtWidgets QtPrintSupport QtDBus" plugins="dds gif icns ico jpeg tga tiff wbmp webp cocoa minimal offscreen" qtdir=$(grep "Command:" Makefile | head -1 | awk '{ print $3; }' | sed s,/bin/.*,,) if [ ! -d "$qtdir" ]; then echo "Failed to discover Qt installation directory from Makefile, exiting" exit 2 fi fdir="$app.app/Contents/Frameworks" pdir="$app.app/Contents/plugins" mkdir -p "$fdir" mkdir -p "$pdir" echo echo "Copying frameworks..." for fwk in $frameworks; do if [ ! -d "$qtdir/lib/$fwk.framework" ]; then if [ "$fwk" = "QtDBus" ]; then echo "QtDBus.framework not found, assuming Qt was built without DBus support" continue fi fi cp -v "$qtdir/lib/$fwk.framework/$fwk" "$fdir" || exit 2 done echo "Done" echo echo "Copying plugins..." for plug in $plugins; do pfile=$(ls "$qtdir"/plugins/*/libq"$plug".dylib) if [ ! -f "$pfile" ]; then echo "Failed to find plugin $plug, exiting" exit 2 fi target="$pdir"/${pfile##?*plugins/} tdir=`dirname "$target"` mkdir -p "$tdir" cp -v "$pfile" "$target" || exit 2 done echo "Done"