Bundle VST3 scanner with binary packages
This commit is contained in:
parent
216935f16e
commit
3ed9a712b9
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
@ -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}
|
||||
|
Loading…
Reference in New Issue
Block a user