diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/installation.html | 29 |
1 files changed, 28 insertions, 1 deletions
diff --git a/doc/installation.html b/doc/installation.html index 8f66113..7640057 100644 --- a/doc/installation.html +++ b/doc/installation.html @@ -173,7 +173,34 @@ svn co svn://intranifty.no-ip.org/osirion osirion <a href="http://ingar.satgnu.net/osirion/files/osirion-src-latest.tar.bz2">osirion-src-latest.tar.bz2</a> </p> </div> - +<div class="subtitle"> + Bullet physics support +</div> +<div class="text"> +<p> + Experimental support for the <a href="http://www.bulletphysics.com/wordpress/">Bullet Physics Library</a> + is under development. You can download the source code here:<br> + <a href="http://code.google.com/p/bullet/downloads/list">http://code.google.com/p/bullet/downloads/list</a> +</p> +<p> + To download and install the library: +<div class="code"> +wget http://bullet.googlecode.com/files/bullet-2.75-rc3.tgz<br> +tar zxvf bullet-2.75-rc3.tgz<br> +cd bullet-2.75-rc3<br> +./autogen.sh<br> +./configure --prefix=/usr/local<br> +make<br> +sudo make install<br> +sudo install --mode=644 src/BulletDynamics/Dynamics/btActionInterface.h /usr/local/include/bullet/BulletDynamics/Dynamics +</div> +</p> +<p> + The osirion configure script will automaticly detect the bullet library in <i>/usr/local</i>. + If you use a different prefix, like <i>/opt/bullet</i>, you will have to call the osirion + configure script using the <i>--with-bullet=/opt/bullet</i> option. +</p> +</div> <div class="subtitle"> Compiling the source code </div> |