adjusted demos to include SoftDemo into AllBulletDemos

This commit is contained in:
erwin.coumans
2008-03-31 00:03:35 +00:00
parent 8a9f66b357
commit c7b526abfa
6 changed files with 21 additions and 336 deletions

View File

@@ -75,6 +75,7 @@ ADD_EXECUTABLE(AllBulletDemos
../Raytracer/Raytracer.cpp
../GjkConvexCastDemo/LinearConvexCastDemo.cpp
../VehicleDemo/VehicleDemo.cpp
../SoftDemo/SoftDemo.cpp
../ConstraintDemo/ConstraintDemo.cpp
)

View File

@@ -31,6 +31,8 @@ subject to the following restrictions:
#include "../VehicleDemo/VehicleDemo.h"
#include "../ConstraintDemo/ConstraintDemo.h"
#include "../Benchmarks/BenchmarkDemo.h"
#include "../SoftDemo/SoftDemo.h"
#include "GlutStuff.h"//OpenGL stuff
#include "BMF_Api.h"//font stuff
@@ -98,6 +100,7 @@ public:
btDemoEntry g_demoEntries[] =
{
{"SoftBodyDemo",SoftDemo::Create},
{"DynamicControlDemo",MotorDemo::Create},
{"RagdollDemo",RagdollDemo::Create},
{"BasicDemo", BasicDemo::Create},

View File

@@ -19,5 +19,6 @@ FrameWorkDemo AllBulletDemos :
../Raytracer/Raytracer.cpp
../GjkConvexCastDemo/LinearConvexCastDemo.cpp
../VehicleDemo/VehicleDemo.cpp
../SoftDemo/SoftDemo.cpp
../ConstraintDemo/ConstraintDemo.cpp
;