Changes between Version 21 and Version 22 of pps/download
- Timestamp:
- Mar 28, 2019, 2:00:14 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
pps/download
v21 v22 13 13 mkdir orxonox && cd orxonox 14 14 }}} 15 4. Download latest version from polybox15 4. Check out the latest revision of the data repository 16 16 {{{ 17 wget -O Orxonox_Tutorial_HS19.zip https://polybox.ethz.ch/index.php/s/UK1S24caPyz6o25/download 17 svn co http://svn.orxonox.net/game/data/data_extern 18 18 }}} 19 4.1 Unzip files19 4.1 Open a new terminal tab, to work in parallel. 20 20 {{{ 21 unzip Orxonox_Tutorial_HS19.zip 21 Press Control + Shift + T 22 22 }}} 23 4.2 Check out the latest revision of the code 24 {{{ 25 svn co http://svn.orxonox.net/game/code/trunk trunk 26 }}} 27 4.3 While you wait, open another terminal tab, download additional dependencies 28 {{{ 29 mkdir dependencies && cd dependencies 30 svn co http://svn.orxonox.net/downloads/ogre_src_v1-9-0 31 cd .. 32 }}} 33 23 34 24 5. Wait for the process to finish35 5. Wait for all processes to finish 25 36 26 6. Prepare to build: 37 6. 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 {{{ 41 data_extern dependencies trunk 42 }}} 43 6.2 Configure the build process 27 44 {{{ 28 45 mkdir build && cd build 29 cmake ../ mergeFS1846 cmake ../trunk 30 47 }}} 31 48 7. Now build for the first time (may take some time, further builds will be faster): 32 49 {{{ 33 50 make -j4