Builing on linux (ubuntu)

stickymango

10-11-2010 23:55:26

Using OgreOggSound in linux(ubuntu)

Get the preferred version from SVN. (As mentioned here)
E.g in the directory you want to build in:

svn co https://ogreoggsound.svn.sourceforge.net/svnroot/ogreoggsound/trunk
To install dependencies in Ubuntu (assuming Ogre already is installed, and the use of boost threads):

apt-get install libboost-thread-dev libopenal-dev libvorbisfile3 libvorbis-dev libogg-devTo build and install:

cd where/you/put/ogreoggsound/
cmake -DUSE_POCO=FALSE .
make
sudo make install
(if using poco, remove "-DUSE_POCO=FALSE")

To use as a plugin, copy to the ogre plugins directory (/usr/lib/OGRE or similar), and rename it to OgreOggSound.so .