Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Version 21 and Version 22 of pps/download


Ignore:
Timestamp:
Mar 28, 2019, 2:00:14 PM (5 years ago)
Author:
wiesep
Comment:

HTTP checkout for svn is working again

Legend:

Unmodified
Added
Removed
Modified
  • pps/download

    v21 v22  
    1313mkdir orxonox && cd orxonox
    1414}}}
    15 4. Download latest version from polybox
     154. Check out the latest revision of the data repository
    1616{{{
    17 wget -O Orxonox_Tutorial_HS19.zip https://polybox.ethz.ch/index.php/s/UK1S24caPyz6o25/download
     17svn co http://svn.orxonox.net/game/data/data_extern
    1818}}}
    19  4.1 Unzip files
     19 4.1 Open a new terminal tab, to work in parallel.
    2020{{{
    21 unzip Orxonox_Tutorial_HS19.zip
     21Press Control + Shift + T
    2222}}}
     23 4.2 Check out the latest revision of the code
     24{{{
     25svn co http://svn.orxonox.net/game/code/trunk trunk
     26}}}
     27 4.3 While you wait, open another terminal tab, download additional dependencies
     28{{{
     29mkdir dependencies && cd dependencies
     30svn co http://svn.orxonox.net/downloads/ogre_src_v1-9-0
     31cd ..
     32}}}
     33
    2334 
    24 5. Wait for the process to finish
     355. Wait for all processes to finish
    2536
    26  6. Prepare to build:
     376. Prepare to build.
     38
     39 6.1 Make sure you are in the right folder. The {{{ls}}} command should give show the following folders:
     40{{{
     41data_extern  dependencies  trunk
     42}}}
     43 6.2 Configure the build process
    2744{{{
    2845mkdir build && cd build
    29 cmake ../mergeFS18
     46cmake ../trunk
    3047}}}
    31  7. Now build for the first time (may take some time, further builds will be faster):
     487. Now build for the first time (may take some time, further builds will be faster):
    3249{{{
    3350make -j4