Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Version 4 and Version 5 of pps/download


Ignore:
Timestamp:
Mar 16, 2017, 12:51:18 PM (7 years ago)
Author:
maxima
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • pps/download

    v4 v5  
    1 = PPS Download =
     1= First PPS Download =
    22
    33'''We check out the source and data repository and build for the first time'''
     
    5151./run
    5252}}}
     53
     54
     55[[BR]]
     56
     57= Download your own branch =
     58'''We check out the project branch and build it'''
     59
     60 1. Open a Terminal.
     61 2. You should now have access to the orxonox storage account:
     62{{{
     63cd /itet-stor/<your-username>/orxonox/<your-username>
     64}}}
     65 3. Create your orxonox directory:
     66{{{
     67mkdir orxonox && cd orxonox
     68}}}
     69 4. Now check out the latest revision of the data repository (you will probably be asked for a username and password once):
     70{{{
     71svn co http://svn.orxonox.net/game/data/trunk data_extern
     72}}}
     73 4.1 Open a new terminal tab, to work in parallel.
     74{{{
     75Press Control + Shift + T.
     76}}}
     77 4.2 Now checkout your project branch:
     78{{{
     79svn co https://svn.orxonox.net/game/code/branches/<your-branchname>
     80}}}
     81
     82 4.3 While you wait, open another terminal tab, download and unzip additional dependencies:
     83{{{
     84wget http://svn.orxonox.net/downloads/tardisDependencies.zip
     85unzip tardisDependencies.zip
     86rm tardisDependencies.zip
     87}}}
     88
     89 
     90 5. Wait for both branches to check out completely.
     91
     92 6. Prepare to build:
     93{{{
     94mkdir build && cd build
     95cmake ../<your-branchname>
     96}}}
     97 7. Now build for the first time (may take some time, further builds will be faster):
     98{{{
     99make -j4
     100}}}
     101 The ''-j4'' means to create 4 parallel compile processes.
     102'''Start the game for the first time'''
     103 8. Start the game. You will see a menu popping up, just press the ''Quickstart'' button.
     104{{{
     105./run
     106}}}