fixed build/project files

This commit is contained in:
erwin.coumans
2008-04-10 21:28:37 +00:00
parent 1139c06a4d
commit fd5057ec5a
27 changed files with 604 additions and 573 deletions

View File

@@ -95,6 +95,8 @@ ADD_LIBRARY(LibBulletCollision
CollisionShapes/btTetrahedronShape.h
CollisionShapes/btSphereShape.cpp
CollisionShapes/btSphereShape.h
CollisionShapes/btShapeHull.h
CollisionShapes/btShapeHull.cpp
CollisionShapes/btStaticPlaneShape.cpp
CollisionShapes/btStaticPlaneShape.h
CollisionShapes/btStridingMeshInterface.cpp

View File

@@ -16,7 +16,7 @@ subject to the following restrictions:
*/
#include "btShapeHull.h"
#include "btConvexHull.h"
#include "LinearMath/btConvexHull.h"
#define NUM_UNITSPHERE_POINTS 42

View File

@@ -16,6 +16,8 @@ ADD_LIBRARY(LibBulletDynamics
ConstraintSolver/btPoint2PointConstraint.h
ConstraintSolver/btSequentialImpulseConstraintSolver.cpp
ConstraintSolver/btSequentialImpulseConstraintSolver.h
ConstraintSolver/btSliderConstraint.cpp
ConstraintSolver/btSliderConstraint.h
ConstraintSolver/btSolve2LinearConstraint.cpp
ConstraintSolver/btSolve2LinearConstraint.h
ConstraintSolver/btTypedConstraint.cpp
@@ -48,4 +50,14 @@ ADD_LIBRARY(LibBulletDynamics
SoftBody/btSoftBody.h
SoftBody/btSoftBodyHelpers.cpp
SoftBody/btSparseSDF.h
SoftBody/btDbvt.cpp
SoftBody/btDbvt.h
SoftBody/btSoftBodyHelpers.h
SoftBody/btSoftBodyRigidBodyCollisionConfiguration.cpp
SoftBody/btSoftRigidCollisionAlgorithm.cpp
SoftBody/btSoftRigidCollisionAlgorithm.h
SoftBody/btSoftSoftCollisionAlgorithm.cpp
SoftBody/btSoftSoftCollisionAlgorithm.h
SoftBody/btSoftRigidDynamicsWorld.h
SoftBody/btSoftRigidDynamicsWorld.cpp
)

File diff suppressed because it is too large Load Diff

View File

@@ -68,6 +68,13 @@ struct btDbvt
};
// Interfaces
struct sStkElm
{
const Node* a;
const Node* b;
sStkElm(const Node* na,const Node* nb) : a(na),b(nb) {}
};
/* ICollide */
struct ICollide
{

View File

@@ -15,6 +15,8 @@ ADD_LIBRARY(LibLinearMath
btHashMap.h
btScalar.h
btAabbUtil2.h
btConvexHull.h
btConvexHull.cpp
btMinMax.h
btQuaternion.h
btStackAlloc.h