blob: 31fd09fb9fb0e14adbf30f53386d15594b9746db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/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 $*
elif [ "$1" == "--i18n" ]; then
shift
LANG=fr_FR.UTF8 build/src/tools/dvdomatic "$*"
else
build/src/tools/dvdomatic "$*"
fi
|