Bullet and OgreBullet Install for Linux

Install Bullet

Bullet is available using apt-get on Ubuntu. You can find more general instructions at the bullet installation page.

sudo apt-get install libbullet-dev libbullet-doc libbullet-extras-dev

Build OgreBullet

git clone https://bitbucket.org/alexeyknyshev/ogrebullet.git
cd ogrebullet
mkdir build
cd build
cmake ..
make
sudo make install 

The make command failed so I had to fix the file ogrebullet/Collisions/include/Utils/OgreBulletCollisionMeshToShapeConverter.h on line 100 the line:

StaticMeshToShapeConverter(Ogre::Entity *entity
should read:
StaticMeshToShapeConverter(const Ogre::Entity *entity
It builds, I really hope I didn't break anything!


Eclipse Project Settings

You can find the general project settings for Bullet and OgreBullet at: http://cs.gettysburg.edu/~cpresser/cs391/examples/bullet/bulletProject.html.

Include Path (-I)

library (-l)


Clif Presser<cpresser@gettysburg.edu>
Last modified: Fri Apr 10 10:11:22 EDT 2015