Files
bullet3/UnitTests/BulletUnitTests/CMakeLists.txt
erwin.coumans 3b83428a7f Applied polar decomposition patch. Fixes Issue 621. Thanks to Christian for the report, Joshua for the fix, Dongsoo for checking the fix.
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.
2012-09-09 17:22:30 +00:00

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
)