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/LinearMath
parent29799bf09c9f11fa95f4054a799c0b82921ea05c (diff)
remove bullet CMakeLists.txt files, blender uses its own.
Diffstat (limited to 'extern/bullet2/src/LinearMath')
-rw-r--r--extern/bullet2/src/LinearMath/CMakeLists.txt51
1 files changed, 0 insertions, 51 deletions
diff --git a/extern/bullet2/src/LinearMath/CMakeLists.txt b/extern/bullet2/src/LinearMath/CMakeLists.txt
deleted file mode 100644
index acd3dbc406d..00000000000
--- a/extern/bullet2/src/LinearMath/CMakeLists.txt
+++ /dev/null
@@ -1,51 +0,0 @@
-
-include_directories(
-${BULLET_PHYSICS_SOURCE_DIR}/src }
-)
-
-set(LinearMath_SRCS
- btConvexHull.cpp
- btQuickprof.cpp
- btGeometryUtil.cpp
- btAlignedAllocator.cpp
-)
-
-set(LinearMath_HDRS
- btAlignedObjectArray.h
- btList.h
- btPoolAllocator.h
- btRandom.h
- btVector3.h
- btDefaultMotionState.h
- btMatrix3x3.h
- btQuadWord.h
- btHashMap.h
- btScalar.h
- btAabbUtil2.h
- btConvexHull.h
- btMinMax.h
- btQuaternion.h
- btStackAlloc.h
- btGeometryUtil.h
- btMotionState.h
- btTransform.h
- btAlignedAllocator.h
- btIDebugDraw.h
- btQuickprof.h
- btTransformUtil.h
-)
-
-add_library(LinearMath ${LinearMath_SRCS} ${LinearMath_HDRS})
-SET_TARGET_PROPERTIES(LinearMath PROPERTIES VERSION ${BULLET_VERSION})
-SET_TARGET_PROPERTIES(LinearMath PROPERTIES SOVERSION ${BULLET_VERSION})
-
-#FILES_MATCHING requires CMake 2.6
-if(${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION} GREATER 2.5)
- install(TARGETS LinearMath 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(LinearMath PROPERTIES FRAMEWORK true)
- SET_TARGET_PROPERTIES(LinearMath PROPERTIES PUBLIC_HEADER "${LinearMath_HDRS}")
-endif()