Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Version 35 and Version 36 of pps/tutorial


Ignore:
Timestamp:
Feb 28, 2013, 11:21:58 AM (11 years ago)
Author:
jo
Comment:

updated version - more steps, faster

Legend:

Unmodified
Added
Removed
Modified
  • pps/tutorial

    v35 v36  
    1111}}}
    1212Put all your orxonox-related files there. This tutorial will do so as well.
    13  
     13 0. Open a Terminal.
     14{{{
     15Alt + F2: Terminal
     16}}}
     17 0. Go to your extra-home folder:
     18{{{
     19cd ~/<your-username>-extra-0
     20}}}
    1421 1. Create your orxonox directory (if not already existing):
    1522{{{
    16 mkdir ~/<your-username>-extra-0/orxonox
    17 cd ~/<your-username>-extra-0/orxonox
     23mkdir orxonox
     24cd orxonox
    1825}}}
    1926 2. Now check out the latest revision of the data repository (you will probably be asked for a username and password once):
     
    2128svn co http://svn.orxonox.net/game/data/trunk data_extern
    2229}}}
    23  3. Now get the latest revision of the tutorial:
     30 4.1 Open a new terminal tab, to work in parallel.
     31{{{
     32Press Umschalt + T.
     33}}}
     34 4.2 Now get the latest revision of the tutorial:
    2435{{{
    2536svn co http://svn.orxonox.net/game/code/branches/tutorial3 tutorial
     
    2738 4. Prepare to build:
    2839{{{
    29 mkdir tutorial/build
    30 cd tutorial/build
    31 cmake ..
     40mkdir build
     41cd build
     42cmake -G"Eclipse CDT4 - Unix Makefiles" -DECLIPSE_CDT4_GENERATE_SOURCE_PROJECT=TRUE ../tutorial
    3243}}}
    3344 5. Now build for the first time (may take some time, further builds will be faster):