Bundle VST3 scanner with binary packages

This commit is contained in:
Robin Gareus 2020-09-18 18:54:45 +02:00
parent 216935f16e
commit 3ed9a712b9
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
3 changed files with 9 additions and 1 deletions

View file

@ -397,7 +397,8 @@ fi
# VST scanner app and wrapper script, if they exist
if test -d $BUILD_ROOT/libs/fst ; then
cp $BUILD_ROOT/libs/fst/ardour-vst-scanner* $Frameworks/
cp $BUILD_ROOT/libs/fst/ardour-vst-scanner* $Frameworks/ || true
cp $BUILD_ROOT/libs/fst/ardour-vst3-scanner* $Frameworks/ || true
fi
# vfork wrapper
@ -550,6 +551,10 @@ if test -f "$Frameworks/ardour-vst-scanner"; then
executables="$executables ../lib/ardour-vst-scanner"
fi
if test -f "$Frameworks/ardour-vst3-scanner"; then
executables="$executables ../lib/ardour-vst3-scanner"
fi
for exe in $executables; do
echo "Processing Executable: $exe"
EXE=$APPROOT/MacOS/$exe