Install CEGUI
1. Install CEGUI Dependencies
sudo apt-get install libpcre++-dev libwxgtk2.8-dev libjpeg62-dev
2. Install CEGUI optional packages
sudo apt-get install doxygen graphviz
3. Install latest source code for CEGUI: http://www.cegui.org.uk/wiki/index.php/CEGUI_Downloads_0.7.7
Since I'm running Ubuntu, I clicked on the Download associated with "This package contains the source code supplied as a compressed tarball. It is intended for linux and Apple Mac users"
4. The downloaded file is called "CEGUI-0.7.7.tar.gz" Move the file into the dev folder which is located in /home/nbitra/dev
mv CEGUI-0.7.7.tar.gz /home/username/dev
5. Uncompress the file.
tar vxzf CEGUI-0.7.7.tar.gz
5. This creates a new folder called "CEGUI-0.7.7" Go into the folder.
cd /home/username/dev/CEGUI-0.7.7
6. Now run the following commands
./bootstrap
./configure
make
sudo make install
sudo ldconfig







