Applied picking cloth patch. Fixes Issue 646. Thanks to Dongsoo. Applied patch Softbody updateConstraints. Fixes Issue 503. Thanks to Dave Bruce Phillips and Dongsoo. Fix various warnigns under Mac OSX.
32 lines
544 B
CMake
32 lines
544 B
CMake
|
|
INCLUDE_DIRECTORIES(
|
|
${BULLET_PHYSICS_SOURCE_DIR}/src
|
|
${BULLET_PHYSICS_SOURCE_DIR}/UnitTests/cppunit/include
|
|
|
|
|
|
${VECTOR_MATH_INCLUDE}
|
|
)
|
|
|
|
LINK_LIBRARIES(
|
|
cppunit
|
|
BulletMultiThreaded
|
|
BulletSoftBody
|
|
BulletDynamics
|
|
BulletCollision
|
|
LinearMath
|
|
)
|
|
|
|
ADD_EXECUTABLE(AppBulletUnitTests
|
|
Main.cpp
|
|
TestBulletOnly.h
|
|
TestLinearMath.h
|
|
TestCholeskyDecomposition.cpp
|
|
TestCholeskyDecomposition.h
|
|
TestPolarDecomposition.cpp
|
|
TestPolarDecomposition.h
|
|
btCholeskyDecomposition.cpp
|
|
btCholeskyDecomposition.h
|
|
)
|
|
|
|
|