Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2009-07-07 13:43:05 +0000
committerStijn Buys <ingar@osirion.org>2009-07-07 13:43:05 +0000
commit7e15b99c01616999496155fe5d2ce89d7608932b (patch)
tree226d5c23b0a931ccbbf490aaf2da647ed6ebe5d4 /doc
parent1f71cc5e127f6163e9163afd42453fe145defbeb (diff)
Initial bullet physics support
Diffstat (limited to 'doc')
-rw-r--r--doc/installation.html29
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>