Changes between Version 35 and Version 36 of pps/tutorial
- Timestamp:
- Feb 28, 2013, 11:21:58 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
pps/tutorial
v35 v36 11 11 }}} 12 12 Put all your orxonox-related files there. This tutorial will do so as well. 13 13 0. Open a Terminal. 14 {{{ 15 Alt + F2: Terminal 16 }}} 17 0. Go to your extra-home folder: 18 {{{ 19 cd ~/<your-username>-extra-0 20 }}} 14 21 1. Create your orxonox directory (if not already existing): 15 22 {{{ 16 mkdir ~/<your-username>-extra-0/orxonox17 cd ~/<your-username>-extra-0/orxonox23 mkdir orxonox 24 cd orxonox 18 25 }}} 19 26 2. Now check out the latest revision of the data repository (you will probably be asked for a username and password once): … … 21 28 svn co http://svn.orxonox.net/game/data/trunk data_extern 22 29 }}} 23 3. Now get the latest revision of the tutorial: 30 4.1 Open a new terminal tab, to work in parallel. 31 {{{ 32 Press Umschalt + T. 33 }}} 34 4.2 Now get the latest revision of the tutorial: 24 35 {{{ 25 36 svn co http://svn.orxonox.net/game/code/branches/tutorial3 tutorial … … 27 38 4. Prepare to build: 28 39 {{{ 29 mkdir tutorial/build30 cd tutorial/build31 cmake ..40 mkdir build 41 cd build 42 cmake -G"Eclipse CDT4 - Unix Makefiles" -DECLIPSE_CDT4_GENERATE_SOURCE_PROJECT=TRUE ../tutorial 32 43 }}} 33 44 5. Now build for the first time (may take some time, further builds will be faster):