remove non-existent projects from CMakeLists.txt Thanks a lot to Paul Martz for the report and suggested fixes. http://bulletphysics.com/Bullet/phpBB3/viewtopic.php?f=9&t=3069
13 lines
732 B
CMake
13 lines
732 B
CMake
if (CMAKE_SIZEOF_VOID_P MATCHES "8")
|
|
SUBDIRS( OpenGL AllBulletDemos ConvexDecompositionDemo Benchmarks HelloWorld
|
|
CcdPhysicsDemo ConstraintDemo SliderConstraintDemo GenericJointDemo
|
|
RagdollDemo ForkLiftDemo BasicDemo BspDemo MovingConcaveDemo VehicleDemo
|
|
ColladaDemo UserCollisionAlgorithm CharacterDemo SoftDemo HeightFieldFluidDemo)
|
|
else (CMAKE_SIZEOF_VOID_P MATCHES "8")
|
|
SUBDIRS( OpenGL AllBulletDemos ConvexDecompositionDemo Benchmarks HelloWorld
|
|
MultiThreadedDemo CcdPhysicsDemo ConstraintDemo SliderConstraintDemo
|
|
GenericJointDemo RagdollDemo ForkLiftDemo BasicDemo BspDemo MovingConcaveDemo
|
|
VehicleDemo ColladaDemo UserCollisionAlgorithm CharacterDemo SoftDemo
|
|
HeightFieldFluidDemo)
|
|
endif (CMAKE_SIZEOF_VOID_P MATCHES "8")
|