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

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