summaryrefslogtreecommitdiff
path: root/run/dvdomatic
blob: 70906a2546b8f276d0065cc40f37d4d28632713b (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 $*
elif [ "$1" == "--valgrind" ]; then
    shift
    valgrind --tool="memcheck" build/src/tools/dvdomatic $*
else
    build/src/tools/dvdomatic $*
fi