File: ct

package info (click to toggle)
ardour 1%3A8.12.0%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 147,336 kB
  • sloc: cpp: 645,609; ansic: 515,891; xml: 123,665; python: 35,344; javascript: 15,340; sh: 4,983; asm: 1,800; perl: 958; php: 785; makefile: 298; objc: 28
file content (26 lines) | stat: -rwxr-xr-x 400 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/sh

args=
num=

if [ $# -gt 0 ] ; then
   case $1 in
       1) shift ;;
       [2-9]) num=$1 ; shift ;;
   esac
fi

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$num