blob: 23b7d22edef392396d1d3b88808743ec5493cec0 (
plain)
1
2
3
4
5
6
7
8
9
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
|