1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
Ember Installation Instructions
Ember uses a lot of internal Worldforge libraries, which might not be supplied by your system.
To help with compilation we therefore strongly recommend that you use the Hammer tool, to be found at http://wiki.worldforge.org/wiki/Hammer_Script
This script will download and install all of the necessary libraries.
Nonetheless, if you want to install from source yourself we hope that this file will give you some guidance.
Ember currently depends on the following libraries:
* Ogre 3d library
Version: 1.8+
http://www.ogre3d.org
* CEGUI gui system
Version: 0.7+
http://www.cegui.org.uk
* SDL Simple DirectMedia Layer
Version: 1.2.0+
http://www.libsdl.org
* libsigc++
Version: 2.0
http://libsigc.sourceforge.net/
* Eris client side session layer
Version: 1.3
http://www.worldforge.org/dev/eng/libraries/eris
* Varconf config files handling
Version: 0.6.2
http://www.worldforge.org/dev/eng/libraries/varconf
* OpenAL sound library
Version: 0.0.7 (?)
http://www.openal.org/
Optional libraries:
* CPPUnit C++ unit testing Library
Version: >= 1.8.0
http://sf.net/projects/cppunit
To install on Linux/Unix system, execute the following (usual) commands:
./autogen.sh
mkdir -p `arch` && cd `arch`
../configure
make
make install
|