diff options
author | Sven Gothel <[email protected]> | 2015-03-28 00:30:41 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2015-03-28 00:30:41 +0100 |
commit | c29cd1a2fbff6282bab956ad61661ac9d48c4e6e (patch) | |
tree | c2af95862ad8d74238925514b4bbf1bd32411f87 /OculusWorldDemo.sh | |
parent | e490c3c7f7bb5461cfa78a214827aa534fb43a3e (diff) |
Remove unused files (unrelated for sources)vanilla_0.4.4
Diffstat (limited to 'OculusWorldDemo.sh')
-rwxr-xr-x | OculusWorldDemo.sh | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/OculusWorldDemo.sh b/OculusWorldDemo.sh deleted file mode 100755 index e668c93..0000000 --- a/OculusWorldDemo.sh +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/bash - -############################################################################# -# -# Filename : OculusWorldDemo.sh -# Content : Linux file for starting the OculusWorldDemo app from the SDK -# package root. It will determine the architechture of the -# system it is running on, and start the approprite executable -# Created : 2013 -# Authors : Simon Hallam -# Copyright : Copyright 2013 OculusVR, Inc. All Rights Reserved -# Instruction : Ensure that the OculusWorldDemo.sh has execute permissions. -# Navigate to a command shell, enter: -# -# ./OculusWorldDemo.sh -# -############################################################################# - -MACHINE_TYPE=`uname -m` -if [ ${MACHINE_TYPE} == 'x86_64' ]; then - ./Samples/OculusWorldDemo/Release/OculusWorldDemo_x86_64_Release -else - ./Samples/OculusWorldDemo/Release/OculusWorldDemo_i386_Release -fi - |