| 19 | | === CEGUI === |
| 20 | | |
| 21 | | '''We do not require CEGUI at the moment, so don't bother installing it.''' |
| 22 | | |
| 23 | | 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: |
| 24 | | |
| 25 | | 1. Download CEGui from the [http://www.cegui.org.uk/ official page] |
| 26 | | 1. Unzip the package |
| 27 | | {{{ |
| 28 | | tar xzf CEGUI-0.5.0b.tar.gz |
| 29 | | }}} |
| 30 | | 1. Enter the directory and configure CEGui with the following options |
| 31 | | {{{ |
| 32 | | cd CEGUI-0.5.0/ |
| 33 | | ./configure --with-default-xml-parser=TinyXMLParser --with-default-image-codec=TGAImageCodec |
| 34 | | }}} |
| 35 | | 1. Compile and install CEGui and you're ready to go |
| 36 | | {{{ |
| 37 | | make |
| 38 | | sudo make install |
| 39 | | }}} |
| 40 | | |