dde0848a98
Export now happens directly to file (unless normalizing is required), and can be easily optimized even further. The Session process connection is still broken during export (as it was before this commit also). git-svn-id: svn://localhost/ardour2/branches/3.0@6401 d708f5d6-7413-0410-9779-e7cbd77b26cf
27 lines
1.2 KiB
Bash
27 lines
1.2 KiB
Bash
TOP=`dirname "$0"`/..
|
|
|
|
#export G_DEBUG=fatal_criticals
|
|
|
|
libs=$TOP/@LIBS@
|
|
|
|
export ARDOUR_PATH=$TOP/gtk2_ardour/icons:$TOP/gtk2_ardour/pixmaps:$TOP/build/default/gtk2_ardour:$TOP/gtk2_ardour:.
|
|
export ARDOUR_SURFACES_PATH=$libs/surfaces/osc:$libs/surfaces/generic_midi:$libs/surfaces/tranzport:$libs/surfaces/powermate:$libs/surfaces/mackie
|
|
export ARDOUR_DATA_PATH=$TOP/gtk2_ardour:build/default/gtk2_ardour:.
|
|
|
|
if test -d $HOME/gtk/inst ; then
|
|
echo USING NEW CLEARLOOKS
|
|
export GTK_PATH=~/.ardour3:$libs/clearlooks-newer
|
|
else
|
|
echo USING OLD CLEARLOOKS
|
|
export GTK_PATH=~/.ardour3:$libs/clearlooks-older
|
|
fi
|
|
|
|
export VAMP_PATH=$libs/vamp-plugins:$VAMP_PATH
|
|
|
|
export LD_LIBRARY_PATH=$libs/vamp-sdk:$libs/surfaces:$libs/surfaces/control_protocol:$libs/ardour:$libs/midi++2:$libs/pbd:$libs/rubberband:$libs/soundtouch:$libs/gtkmm2ext:$libs/sigc++2:$libs/glibmm2:$libs/gtkmm2/atk:$libs/gtkmm2/pango:$libs/gtkmm2/gdk:$libs/gtkmm2/gtk:$libs/libgnomecanvasmm:$libs/libsndfile:$libs/appleutility:$libs/cairomm:$libs/taglib:$libs/evoral:$libs/evoral/src/libsmf:$libs/audiographer:$LD_LIBRARY_PATH
|
|
|
|
# DYLD_LIBRARY_PATH is for darwin.
|
|
export DYLD_FALLBACK_LIBRARY_PATH=$LD_LIBRARY_PATH
|
|
|
|
EXECUTABLE=@EXECUTABLE@
|