summarylogtreecommitdiffstats
path: root/OculusTuscanyDemo.sh
blob: a5f0327540b2aff050e9b97e87c01298a28abe16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
cd /usr/share/OculusTuscanyDemo/
if [ $1 = "--debug" ]; then
        if [ ! -z "$DEBUGGER" ]; then
                echo "\$DEBUGGER Set to $DEBUGGER"
                $DEBUGGER ./OculusWorldDemo64Debug "$@"
        else
                echo "\$DEBUGGER not set, using gdb"
                gdb --args ./OculusWorldDemo64Debug "$@"
        fi
else
        echo "Starting Release Version"
        ./OculusWorldDemo64
fi