diff options
Diffstat (limited to 'run/dvdomatic')
| -rwxr-xr-x | run/dvdomatic | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/run/dvdomatic b/run/dvdomatic new file mode 100755 index 000000000..23b7d22ed --- /dev/null +++ b/run/dvdomatic @@ -0,0 +1,10 @@ +#!/bin/bash + +export LD_LIBRARY_PATH=build/src/lib:build/src/gtk:$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 |
