summaryrefslogtreecommitdiff
path: root/run/dcpomatic_ecinema
diff options
context:
space:
mode:
Diffstat (limited to 'run/dcpomatic_ecinema')
-rwxr-xr-xrun/dcpomatic_ecinema25
1 files changed, 0 insertions, 25 deletions
diff --git a/run/dcpomatic_ecinema b/run/dcpomatic_ecinema
deleted file mode 100755
index 3c739c079..000000000
--- a/run/dcpomatic_ecinema
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/bash
-
-export LD_LIBRARY_PATH=build/src/lib:build/src/wx:/home/c.hetherington/lib:$LD_LIBRARY_PATH
-export DYLD_LIBRARY_PATH=build/src/lib:build/src/wx:/Users/c.hetherington/osx-environment/64/lib
-if [ "$1" == "--debug" ]; then
- shift
- gdb --args build/src/tools/dcpomatic2_ecinema $*
-elif [ "$1" == "--valgrind" ]; then
- shift
- valgrind --tool="memcheck" build/src/tools/dcpomatic2_ecinema $*
-elif [ "$1" == "--callgrind" ]; then
- shift
- valgrind --tool="callgrind" build/src/tools/dcpomatic2_ecinema $*
-elif [ "$1" == "--massif" ]; then
- shift
- valgrind --tool="massif" build/src/tools/dcpomatic2_ecinema $*
-elif [ "$1" == "--i18n" ]; then
- shift
- LANGUAGE=fr_FR.UTF8 LANG=fr_FR.UTF8 LC_ALL=fr_FR.UTF8 build/src/tools/dcpomatic2_ecinema "$*"
-elif [ "$1" == "--perf" ]; then
- shift
- perf record build/src/tools/dcpomatic2_ecinema $*
-else
- build/src/tools/dcpomatic2_ecinema $*
-fi