Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2010-12-23 01:54:48 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-12-23 01:54:48 +0300
commitaf7b8883de42a4ed225fae00f2e72c7bf54f78d5 (patch)
tree619cf5a337f084a7d3c5aa9b9d258f5f35bbbb71 /extern/bullet2/src/BulletSoftBody
parent29799bf09c9f11fa95f4054a799c0b82921ea05c (diff)
remove bullet CMakeLists.txt files, blender uses its own.
Diffstat (limited to 'extern/bullet2/src/BulletSoftBody')
-rw-r--r--extern/bullet2/src/BulletSoftBody/CMakeLists.txt43
1 files changed, 0 insertions, 43 deletions
diff --git a/extern/bullet2/src/BulletSoftBody/CMakeLists.txt b/extern/bullet2/src/BulletSoftBody/CMakeLists.txt
deleted file mode 100644
index 16fc86f4c56..00000000000
--- a/extern/bullet2/src/BulletSoftBody/CMakeLists.txt
+++ /dev/null
@@ -1,43 +0,0 @@
-
-include_directories(
-${BULLET_PHYSICS_SOURCE_DIR}/src }
-)
-
-set(BulletSoftBody_SRCS
- btSoftBody.cpp
- btSoftBodyHelpers.cpp
- btSoftBodyRigidBodyCollisionConfiguration.cpp
- btSoftRigidCollisionAlgorithm.cpp
- btSoftSoftCollisionAlgorithm.cpp
- btSoftBodyConcaveCollisionAlgorithm.cpp
- btSoftRigidDynamicsWorld.cpp
-)
-
-set(BulletSoftBody_HDRS
- btSoftBody.h
- btSparseSDF.h
- btSoftBodyHelpers.h
- btSoftRigidCollisionAlgorithm.h
- btSoftSoftCollisionAlgorithm.h
- btSoftBodyConcaveCollisionAlgorithm.h
- btSoftRigidDynamicsWorld.h
-)
-
-
-
-add_library(BulletSoftBody ${BulletSoftBody_SRCS} ${BulletSoftBody_HDRS})
-SET_TARGET_PROPERTIES(BulletSoftBody PROPERTIES VERSION ${BULLET_VERSION})
-SET_TARGET_PROPERTIES(BulletSoftBody PROPERTIES SOVERSION ${BULLET_VERSION})
-if(BUILD_SHARED_LIBS)
- target_link_libraries(BulletSoftBody BulletDynamics)
-endif()
-
-if(${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION} GREATER 2.5)
- install(TARGETS BulletSoftBody DESTINATION lib)
- install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} DESTINATION include FILES_MATCHING PATTERN "*.h")
-endif()
-
-if(APPLE AND BUILD_SHARED_LIBS AND FRAMEWORK)
- SET_TARGET_PROPERTIES(BulletSoftBody PROPERTIES FRAMEWORK true)
- SET_TARGET_PROPERTIES(BulletSoftBody PROPERTIES PUBLIC_HEADER "${BulletSoftBody_HDRS}")
-endif()