new color management design starts to take shape (canvas color only for now)
[ardour.git] / gtk2_ardour / ardev
1 #!/bin/sh
2
3 #export G_DEBUG=fatal_criticals
4 export ARDOUR_RC=../ardour.rc
5 export ARDOUR_GLADE_PATH=./glade
6 export ARDOUR_UI=./ardour.menus
7 export ARDOUR_UI_RC=./ardour2_ui.rc
8 export ARDOUR_BINDINGS=./ardour.bindings
9
10 if [ -x ./ardour.bin ] ; then 
11     # scons executable
12     export LD_LIBRARY_PATH=../libs/ardour
13     exec ./ardour.bin --novst $*
14 else 
15     # autofoo/make executable
16     export LD_LIBRARY_PATH=../libs/ardour
17     exec ./ardour --novst $*
18 fi
19