| 53 | | Furthermore, you will need to check our data repository. This repository contains all the graphics, fonts and sounds and other third-party datafor Orxonox. To check it out use the command: |
| 54 | | {{{ |
| 55 | | $ svn co https://svn.orxonox.net/data/Media media |
| 56 | | }}} |
| 57 | | Now make sure, you have set the correct path to your media directory in the file ''bin/orxonox.ini''. |
| 58 | | |
| 59 | | == Compiling == |
| 60 | | Just cd to the trunk directory, then execute configure and make: |
| 61 | | {{{ |
| 62 | | $ cd orxonox-trunk |
| 63 | | $ cmake . |
| 64 | | ... |
| 65 | | $ make -j4 // -j4 means 4 jobs concurrently (for those of you with multicore cpus) |
| 66 | | ... |
| 67 | | $ ./run |
| 68 | | }}} |
| 69 | | Additionally if you don't want to built into your source directories perform the following steps instead: |
| 70 | | {{{ |
| 71 | | $ cd orxonox-trunk |
| 72 | | $ mkdir build |
| 73 | | $ cd build |
| 74 | | $ cmake .. |
| 75 | | ... |
| 76 | | $ make -j4 |
| 77 | | ... |
| 78 | | $ cd .. |
| 79 | | $ ./run |
| 80 | | |
| 81 | | }}} |
| | 44 | Now proceed by following the steps described on the [wiki:LinuxSource building] page. |