Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/buildsystem/bin/linux/run-script @ 2243

Last change on this file since 2243 was 2243, checked in by rgrieder, 15 years ago
  • Inserted IF when copying the config files from bin/ so existing files don't get overwritten.
  • Reorganised everything around the run-script: There are now folders in bin/ for each kind of distribution (tardis, linux, msvc and mingw). CMake will then copy the right files to the binary folder.
  • Removed ugly parts in the run-script since tardis now got its own one.
  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:mergeinfo set to (toggle deleted branches)
    /code/branches/ceguilua/bin/run-scriptmergedeligible
    /code/branches/core3/bin/run-script1572-1739
    /code/branches/gcc43/bin/run-script1580
    /code/branches/gui/bin/run-script1635-1723
    /code/branches/input/bin/run-script1629-1636
File size: 200 bytes
Line 
1#!/bin/sh
2
3if [ ! -f orxonox ]; then
4        echo "orxonox does not exist"
5        echo "did you compile it?"
6
7        exit 1
8fi
9
10trap "xset r && echo 'resetting autorepeat'" HUP INT TERM QUIT ABRT KILL ALRM
11./orxonox $@
Note: See TracBrowser for help on using the repository browser.