mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-13 10:06:33 +01:00
18 lines
291 B
Bash
Executable file
18 lines
291 B
Bash
Executable file
#!/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
|