Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Initial Version and Version 1 of dev/Demo


Ignore:
Timestamp:
Sep 14, 2012, 5:41:49 PM (12 years ago)
Author:
jo
Comment:

not sure if I'm going to use this

Legend:

Unmodified
Added
Removed
Modified
  • dev/Demo

    v1 v1  
     1== Preparation ==
     2 * Open a Terminal.
     3 * Open the local harddrive's folder:
     4{{{
     5cd /scratch
     6}}}
     7 * Create your own folder:
     8{{{
     9mkdir orxonox
     10}}}
     11 * Open that folder.
     12{{{
     13cd orxonox
     14}}}
     15 * Download the project data.
     16{{{
     17svn co http://svn.orxonox.net/game/data/branches/dataRelease2012 data_extern
     18}}}
     19 * Create a new tab. Press Ctrl + Tab + T.
     20 * Download the code.
     21{{{
     22svn co http://svn.orxonox.net/game/code/branches/release2012
     23}}}
     24 * Wait until both checkouts have finished.
     25{{{
     26cd release2012
     27}}}
     28 * Create the makefile:
     29{{{
     30cmake ..
     31}}}
     32 * Run the makefile (3 paralell processes) = Compile the project:
     33{{{
     34make -j3
     35}}}
     36 * Run Orxonox
     37{{{
     38./run
     39}}}