13
0

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
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
3 changed files with 9 additions and 1 deletions

View File

@ -447,8 +447,10 @@ fi
# neither binary nor script exists)
if test -d $BUILD_ROOT/libs/fst ; then
cp $BUILD_ROOT/libs/fst/ardour-vst-scanner* $APPLIB || true
cp $BUILD_ROOT/libs/fst/ardour-vst3-scanner* $APPLIB || true
if test x$STRIP = xall ; then
strip -s $APPLIB/ardour-vst-scanner*
strip -s $APPLIB/ardour-vst3-scanner*
fi
fi

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

View File

@ -146,6 +146,7 @@ cp build/libs/pbd/pbd-*.dll $DESTDIR/bin/
cp build/libs/ptformat/ptformat-*.dll $DESTDIR/bin/
cp build/libs/audiographer/audiographer-*.dll $DESTDIR/bin/
cp build/libs/fst/ardour-vst-scanner.exe $DESTDIR/bin/ || true
cp build/libs/fst/ardour-vst3-scanner.exe $DESTDIR/bin/ || true
cp build/session_utils/*-*.exe $DESTDIR/bin/ || true
cp build/luasession/ardour6-lua.exe $DESTDIR/bin/ || true
cp `ls -t build/gtk2_ardour/ardour-*.exe | head -n1` $DESTDIR/bin/${PRODUCT_EXE}