| 5 | |
| 6 | == Dependencies and third party libs == |
| 7 | === CEGui === |
| 8 | Using the CEGui package (libcegui) from Ubuntu results in runtime errors during the loading sequence of Ogre. Building CEGui by yourself with the right options solves the problem: |
| 9 | |
| 10 | 1. Download CEGui from the [http://www.cegui.org.uk/ official page] |
| 11 | 1. Unzip the package |
| 12 | {{{ |
| 13 | tar xzf CEGUI-0.5.0b.tar.gz |
| 14 | }}} |
| 15 | 1. Enter the directory and configure CEGui with the following options |
| 16 | {{{ |
| 17 | cd CEGUI-0.5.0/ |
| 18 | ./configure --with-default-xml-parser=TinyXMLParser --with-default-image-codec=TGAImageCodec |
| 19 | }}} |
| 20 | 1. Compile and install CEGui and you're ready to go |
| 21 | {{{ |
| 22 | make |
| 23 | sudo make install |
| 24 | }}} |
| 25 | |