summaryrefslogtreecommitdiff
path: root/run/dvdomatic
blob: 125fd9d27223f324de4899e2f1e15bc0537cba78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

export LD_LIBRARY_PATH=build/src/lib:build/src/wx:build/src/asdcplib/src:$LD_LIBRARY_PATH
if [ "$1" == "--debug" ]; then
    shift
    gdb --args build/src/tools/dvdomatic "$1"
elif [ "$1" == "--valgrind" ]; then
    shift
    valgrind --tool="memcheck" build/src/tools/dvdomatic "$1"
else
    build/src/tools/dvdomatic "$1"
fi