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
|
||
|
)
|
||
|
|
||
|
|