summaryrefslogtreecommitdiff
path: root/Demos/GimpactTestDemo
diff options
context:
space:
mode:
authorejcoumans <ejcoumans@08e121b0-ae19-0410-a57b-3be3395fd4fd>2007-09-20 06:16:14 +0000
committerejcoumans <ejcoumans@08e121b0-ae19-0410-a57b-3be3395fd4fd>2007-09-20 06:16:14 +0000
commit876ddcfd76659c3ab4d4b39fb2f98e708be1c665 (patch)
treeeb4e89732ecea8ec0c5baba314cbde5a40c474a0 /Demos/GimpactTestDemo
parentbbb88e67fbf767d2fbfed3179506a14c08aa24cc (diff)
downloadbullet3-876ddcfd76659c3ab4d4b39fb2f98e708be1c665.tar.gz
fixes for demo, jamfile
Diffstat (limited to 'Demos/GimpactTestDemo')
-rw-r--r--Demos/GimpactTestDemo/GimpactTestDemo.cpp2
-rw-r--r--Demos/GimpactTestDemo/Jamfile21
2 files changed, 22 insertions, 1 deletions
diff --git a/Demos/GimpactTestDemo/GimpactTestDemo.cpp b/Demos/GimpactTestDemo/GimpactTestDemo.cpp
index b64af1a79..b8520911b 100644
--- a/Demos/GimpactTestDemo/GimpactTestDemo.cpp
+++ b/Demos/GimpactTestDemo/GimpactTestDemo.cpp
@@ -325,7 +325,7 @@ void GimpactConcaveDemo::initPhysics()
//btOverlappingPairCache* broadphase = new btSimpleBroadphase();
//m_broadphase = new btSimpleBroadphase();
- LONG maxProxies = 1024;
+ int maxProxies = 1024;
btVector3 worldAabbMin(-10000,-10000,-10000);
btVector3 worldAabbMax( 10000, 10000, 10000);
m_broadphase = new bt32BitAxisSweep3(worldAabbMin,worldAabbMax,maxProxies);
diff --git a/Demos/GimpactTestDemo/Jamfile b/Demos/GimpactTestDemo/Jamfile
new file mode 100644
index 000000000..5917391de
--- /dev/null
+++ b/Demos/GimpactTestDemo/Jamfile
@@ -0,0 +1,21 @@
+SubDir TOP Demos GimpactTestDemo ;
+
+ #some demos need extra functionality, Collada / ConvexDecomposition etc.
+
+ rule ExtraDemo1
+
+ {
+ Application $(<) : $(>) : noinstall console nomanifest ;
+ LinkWith $(<) : GIMPACT bulletopenglsupport bulletdynamics bulletcollision bulletmath ;
+ CFlags $(<) :
+ [ FIncludes $(TOP)/Demos/OpenGL ]
+ [ FIncludes $(TOP)/Extras/GIMPACT/include ]
+
+ ;
+
+ MsvcIncDirs $(<) :
+ "../../Demos/OpenGL"
+ "../../Extras/GIMPACT/include" ;
+ }
+
+ExtraDemo1 GimpactTestDemo : [ Wildcard *.h *.cpp ] ;