mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-09 00:04:56 +01:00
19 lines
291 B
Text
19 lines
291 B
Text
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
args=
|
||
|
|
|
||
|
|
if [ $# -gt 0 ] ; then
|
||
|
|
args="$@"
|
||
|
|
fi
|
||
|
|
|
||
|
|
t=`dirname "$0"`/../..
|
||
|
|
TOP=`realpath $t`
|
||
|
|
|
||
|
|
libs=$TOP/build/libs
|
||
|
|
|
||
|
|
for lib in pbd canvas gtkmm2ext ; do
|
||
|
|
export LD_LIBRARY_PATH=$libs/$lib:${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}
|
||
|
|
done
|
||
|
|
|
||
|
|
$args $TOP/build/libs/canvas/constraint_test
|