- Timestamp:
- Feb 15, 2009, 7:53:22 PM (16 years ago)
- Location:
- code/branches/buildsystem3
- Files:
-
- 1 added
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/buildsystem3/doc/api/CMakeLists.txt
r2664 r2670 65 65 STRING(REGEX REPLACE "/" "\\\\" HHP_FILE ${TMP}) 66 66 ADD_CUSTOM_TARGET(chmdoc ${HTML_HELP_COMPILER} ${HHP_FILE}) 67 IF(NOT MSVC) 68 ADD_DEPENDENCIES(chmdoc doc) 69 ELSE(NOT MSVC) 70 # Do not add the dependency because msvc will then always build 71 # Doxygen, which is not very comforting. 72 ENDIF(NOT MSVC) 67 ADD_DEPENDENCIES(chmdoc doc) 68 # Adding a dependency somehow adds doc target as default build target 69 SET_TARGET_PROPERTIES(doc chmdoc PROPERTIES EXCLUDE_FROM_DEFAULT_BUILD TRUE) 73 70 ENDIF(HTML_HELP_COMPILER) 74 71 ENDIF (WIN32) … … 81 78 OPTIONAL 82 79 ) 83 IF(EXISTS ${CMAAKE_CURRENT_BINARY_DIR}/html) 84 INSTALL( 85 DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/html 86 DESTINATION ${ORXONOX_DOC_INSTALL_PATH}/api 87 ) 80 # Install command always needs the directory to work 81 IF(NOT EXISTS ${CMAKE_CURRENT_BINARY_DIR}/html) 82 FILE(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/html) 88 83 ENDIF() 84 INSTALL( 85 DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/html 86 DESTINATION ${ORXONOX_DOC_INSTALL_PATH}/api 87 ) 89 88 ENDIF(DOXYGEN_FOUND) -
code/branches/buildsystem3/media/CMakeLists.txt
r2666 r2670 41 41 ################ Installation ################# 42 42 43 # Try no to copy both tcl script file libraries 44 IF(TCL_LIBRARY MATCHES "85|8\\.5") 45 SET(TCL_EXCLUDE_PATTERN "tcl8\\.4") 46 ELSEIF(TCL_LIBRARY MATCHES "84|8\\.4") 47 SET(TCL_EXCLUDE_PATTERN "tcl8\\.5") 48 ENDIF() 49 43 50 INSTALL( 44 51 DIRECTORY ${ORXONOX_MEDIA_DIRECTORY}/ 45 52 DESTINATION ${ORXONOX_MEDIA_INSTALL_PATH} 46 REGEX "\\.svn$|_svn$ " EXCLUDE53 REGEX "\\.svn$|_svn$|backToPNG|${TCL_EXCLUDE_PATTERN}" EXCLUDE 47 54 ) -
code/branches/buildsystem3/src/CMakeLists.txt
r2664 r2670 133 133 ADD_SUBDIRECTORY(network) 134 134 ADD_SUBDIRECTORY(orxonox) 135 136 # Apply version info 137 SET_TARGET_PROPERTIES(util core network orxonox 138 PROPERTIES VERSION ${ORXONOX_VERSION}) -
code/branches/buildsystem3/src/bullet/BulletCollision/CMakeLists.txt
r2662 r2670 1 SET(BulletCollision_SRCS1 ADD_SOURCE_FILES(BULLET_FILES 2 2 BroadphaseCollision/btAxisSweep3.cpp 3 3 BroadphaseCollision/btBroadphaseProxy.cpp … … 10 10 BroadphaseCollision/btQuantizedBvh.cpp 11 11 BroadphaseCollision/btSimpleBroadphase.cpp 12 12 13 CollisionDispatch/btActivatingCollisionAlgorithm.cpp 13 14 CollisionDispatch/btCollisionDispatcher.cpp … … 30 31 CollisionDispatch/btUnionFind.cpp 31 32 CollisionDispatch/SphereTriangleDetector.cpp 33 32 34 CollisionShapes/btBoxShape.cpp 33 35 CollisionShapes/btBvhTriangleMeshShape.cpp … … 63 65 CollisionShapes/btTriangleMeshShape.cpp 64 66 CollisionShapes/btUniformScalingShape.cpp 67 65 68 Gimpact/btContactProcessing.cpp 66 69 Gimpact/btGImpactShape.cpp … … 74 77 Gimpact/btGImpactQuantizedBvh.cpp 75 78 Gimpact/gim_box_set.cpp 79 76 80 NarrowPhaseCollision/btContinuousConvexCollision.cpp 77 81 NarrowPhaseCollision/btGjkEpa2.cpp … … 85 89 NarrowPhaseCollision/btSubSimplexConvexCast.cpp 86 90 NarrowPhaseCollision/btVoronoiSimplexSolver.cpp 91 92 # Headers 93 BroadphaseCollision/btAxisSweep3.h 94 BroadphaseCollision/btBroadphaseInterface.h 95 BroadphaseCollision/btBroadphaseProxy.h 96 BroadphaseCollision/btCollisionAlgorithm.h 97 BroadphaseCollision/btDispatcher.h 98 BroadphaseCollision/btDbvtBroadphase.h 99 BroadphaseCollision/btDbvt.h 100 BroadphaseCollision/btMultiSapBroadphase.h 101 BroadphaseCollision/btOverlappingPairCache.h 102 BroadphaseCollision/btOverlappingPairCallback.h 103 BroadphaseCollision/btQuantizedBvh.h 104 BroadphaseCollision/btSimpleBroadphase.h 105 106 CollisionDispatch/btActivatingCollisionAlgorithm.h 107 CollisionDispatch/btCollisionConfiguration.h 108 CollisionDispatch/btCollisionCreateFunc.h 109 CollisionDispatch/btCollisionDispatcher.h 110 CollisionDispatch/btCollisionObject.h 111 CollisionDispatch/btCollisionWorld.h 112 CollisionDispatch/btCompoundCollisionAlgorithm.h 113 CollisionDispatch/btConvexConcaveCollisionAlgorithm.h 114 CollisionDispatch/btDefaultCollisionConfiguration.h 115 CollisionDispatch/btSphereSphereCollisionAlgorithm.h 116 CollisionDispatch/btBoxBoxCollisionAlgorithm.h 117 CollisionDispatch/btBoxBoxDetector.h 118 CollisionDispatch/btGhostObject.h 119 CollisionDispatch/btSphereBoxCollisionAlgorithm.h 120 CollisionDispatch/btConvexPlaneCollisionAlgorithm.h 121 CollisionDispatch/btSphereTriangleCollisionAlgorithm.h 122 CollisionDispatch/btConvexConvexAlgorithm.h 123 CollisionDispatch/btEmptyCollisionAlgorithm.h 124 CollisionDispatch/btManifoldResult.h 125 CollisionDispatch/btSimulationIslandManager.h 126 CollisionDispatch/btUnionFind.h 127 CollisionDispatch/SphereTriangleDetector.h 128 129 CollisionShapes/btBoxShape.h 130 CollisionShapes/btBvhTriangleMeshShape.h 131 CollisionShapes/btCapsuleShape.h 132 CollisionShapes/btCollisionMargin 133 CollisionShapes/btCollisionShape.h 134 CollisionShapes/btCompoundShape.h 135 CollisionShapes/btConcaveShape.h 136 CollisionShapes/btConeShape.h 137 CollisionShapes/btConvexHullShape.h 138 CollisionShapes/btConvexPointCloudShape.h 139 CollisionShapes/btConvexShape.h 140 CollisionShapes/btConvexInternalShape.h 141 CollisionShapes/btConvexTriangleMeshShape.h 142 CollisionShapes/btCylinderShape.h 143 CollisionShapes/btEmptyShape.h 144 CollisionShapes/btHeightfieldTerrainShape.h 145 CollisionShapes/btMinkowskiSumShape.h 146 CollisionShapes/btMaterial.h 147 CollisionShapes/btMultimaterialTriangleMeshShape.h 148 CollisionShapes/btMultiSphereShape.h 149 CollisionShapes/btOptimizedBvh.h 150 CollisionShapes/btPolyhedralConvexShape.h 151 CollisionShapes/btScaledBvhTriangleMeshShape.h 152 CollisionShapes/btTetrahedronShape.h 153 CollisionShapes/btSphereShape.h 154 CollisionShapes/btShapeHull.h 155 CollisionShapes/btStaticPlaneShape.h 156 CollisionShapes/btStridingMeshInterface.h 157 CollisionShapes/btTriangleCallback.h 158 CollisionShapes/btTriangleBuffer.h 159 CollisionShapes/btTriangleIndexVertexArray.h 160 CollisionShapes/btTriangleIndexVertexMaterialArray.h 161 CollisionShapes/btTriangleMesh.h 162 CollisionShapes/btTriangleMeshShape.h 163 CollisionShapes/btUniformScalingShape.h 164 165 Gimpact/btGImpactShape.h 166 Gimpact/gim_contact.h 167 Gimpact/btGImpactBvh.h 168 Gimpact/btGenericPoolAllocator.h 169 Gimpact/gim_memory.h 170 Gimpact/btGImpactCollisionAlgorithm.h 171 Gimpact/btTriangleShapeEx.h 172 Gimpact/gim_tri_collision.h 173 Gimpact/btGImpactQuantizedBvh.h 174 Gimpact/gim_box_set.h 175 176 NarrowPhaseCollision/btContinuousConvexCollision.h 177 NarrowPhaseCollision/btConvexCast.h 178 NarrowPhaseCollision/btConvexPenetrationDepthSolver.h 179 NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h 180 NarrowPhaseCollision/btGjkConvexCast.h 181 NarrowPhaseCollision/btGjkEpa2.h 182 NarrowPhaseCollision/btGjkEpaPenetrationDepthSolver.h 183 NarrowPhaseCollision/btGjkPairDetector.h 184 NarrowPhaseCollision/btManifoldPoint.h 185 NarrowPhaseCollision/btMinkowskiPenetrationDepthSolver.h 186 NarrowPhaseCollision/btPersistentManifold.h 187 NarrowPhaseCollision/btPointCollector.h 188 NarrowPhaseCollision/btRaycastCallback.h 189 NarrowPhaseCollision/btSimplexSolverInterface.h 190 NarrowPhaseCollision/btSubSimplexConvexCast.h 191 NarrowPhaseCollision/btVoronoiSimplexSolver.h 87 192 ) 88 89 ADD_LIBRARY(BulletCollision ${BulletCollision_SRCS}) -
code/branches/buildsystem3/src/bullet/BulletDynamics/CMakeLists.txt
r2662 r2670 1 SET(BulletDynamics_SRCS1 ADD_SOURCE_FILES(BULLET_FILES 2 2 ConstraintSolver/btContactConstraint.cpp 3 3 ConstraintSolver/btConeTwistConstraint.cpp … … 9 9 ConstraintSolver/btSolve2LinearConstraint.cpp 10 10 ConstraintSolver/btTypedConstraint.cpp 11 11 12 Dynamics/Bullet-C-API.cpp 12 13 Dynamics/btDiscreteDynamicsWorld.cpp 13 14 Dynamics/btSimpleDynamicsWorld.cpp 14 15 Dynamics/btRigidBody.cpp 16 15 17 Vehicle/btRaycastVehicle.cpp 16 18 Vehicle/btWheelInfo.cpp 19 17 20 Character/btKinematicCharacterController.cpp 21 22 # Headers 23 ConstraintSolver/btConstraintSolver.h 24 ConstraintSolver/btContactConstraint.h 25 ConstraintSolver/btContactSolverInfo.h 26 ConstraintSolver/btConeTwistConstraint.h 27 ConstraintSolver/btGeneric6DofConstraint.h 28 ConstraintSolver/btHingeConstraint.h 29 ConstraintSolver/btJacobianEntry.h 30 ConstraintSolver/btPoint2PointConstraint.h 31 ConstraintSolver/btSequentialImpulseConstraintSolver.h 32 ConstraintSolver/btSliderConstraint.h 33 ConstraintSolver/btSolve2LinearConstraint.h 34 ConstraintSolver/btSolverBody.h 35 ConstraintSolver/btSolverConstraint.h 36 ConstraintSolver/btTypedConstraint.h 37 38 Dynamics/btContinuousDynamicsWorld.h 39 Dynamics/btDiscreteDynamicsWorld.h 40 Dynamics/btDynamicsWorld.h 41 Dynamics/btSimpleDynamicsWorld.h 42 Dynamics/btRigidBody.h 43 44 Vehicle/btRaycastVehicle.h 45 Vehicle/btVehicleRaycaster.h 46 Vehicle/btWheelInfo.h 47 48 Character/btCharacterControllerInterface.h 49 Character/btKinematicCharacterController.h 18 50 ) 19 20 ADD_LIBRARY(BulletDynamics ${BulletDynamics_SRCS}) -
code/branches/buildsystem3/src/bullet/CMakeLists.txt
r2662 r2670 1 # 2 # ORXONOX - the hottest 3D action shooter ever to exist 3 # > www.orxonox.net < 4 # 5 # This program is free software; you can redistribute it and/or 6 # modify it under the terms of the GNU General Public License 7 # as published by the Free Software Foundation; either version 2 8 # of the License, or (at your option) any later version. 9 # 10 # This program is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License along 16 # with this program; if not, write to the Free Software Foundation, 17 # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 18 # 19 20 SET_SOURCE_FILES(BULLET_FILES 21 btBulletCollisionCommon.h 22 btBulletDynamicsCommon.h 23 Bullet-C-Api.h 24 ) 1 25 ADD_SUBDIRECTORY(BulletCollision) 2 26 ADD_SUBDIRECTORY(BulletDynamics) 3 27 ADD_SUBDIRECTORY(LinearMath) 28 29 GENERATE_SOURCE_GROUPS(${BULLET_FILES}) 30 31 # No warnings needed from third party libraries 32 ADD_COMPILER_FLAGS("-w") 33 34 IF(MSVC) 35 ADD_LIBRARY(bullet_orxonox STATIC ${BULLET_FILES}) 36 ELSE(MSVC) 37 ADD_LIBRARY(bullet_orxonox SHARED ${BULLET_FILES}) 38 ORXONOX_INSTALL(bullet_orxonox) 39 ENDIF(MSVC) 40 41 SET_TARGET_PROPERTIES(bullet_orxonox PROPERTIES VERSION 2.73) -
code/branches/buildsystem3/src/bullet/LinearMath/CMakeLists.txt
r2662 r2670 1 SET(LinearMath_SRCS1 ADD_SOURCE_FILES(BULLET_FILES 2 2 btConvexHull.cpp 3 3 btQuickprof.cpp 4 4 btGeometryUtil.cpp 5 5 btAlignedAllocator.cpp 6 7 # Headers 8 btAlignedObjectArray.h 9 btList.h 10 btPoolAllocator.h 11 btRandom.h 12 btVector3.h 13 btDefaultMotionState.h 14 btMatrix3x3.h 15 btQuadWord.h 16 btHashMap.h 17 btScalar.h 18 btAabbUtil2.h 19 btConvexHull.h 20 btMinMax.h 21 btQuaternion.h 22 btStackAlloc.h 23 btGeometryUtil.h 24 btMotionState.h 25 btTransform.h 26 btAlignedAllocator.h 27 btIDebugDraw.h 28 btQuickprof.h 29 btTransformUtil.h 6 30 ) 7 8 ADD_LIBRARY(LinearMath ${LinearMath_SRCS}) -
code/branches/buildsystem3/src/ceguilua/CMakeLists.txt
r2664 r2670 36 36 # Copy package files incrementally until the version is met 37 37 SET(CEGUILUA_VERSIONS 0.5.0 0.6.0 0.6.1 0.6.2) 38 FOREACH(_version ${CEGUILUA_VERSIONS}) 39 COMPARE_VERSION_STRINGS(${_version} ${CEGUI_VERSION} _compare_result) 40 IF(_compare_result EQUAL 1) 41 BREAK() # _version > CEGUI_VERSION 42 ENDIF() 38 # Only copy on version change 39 IF(NOT "${_CEGUI_VERSION_REF}" STREQUAL "${CEGUI_VERSION}" 40 OR NOT EXISTS ${CEGUILUA_BINARY_DIR}/exceptions.lua) 41 SET(_CEGUI_VERSION_REF ${CEGUI_VERSION} CACHE INTERNAL "Do not edit") 42 FOREACH(_version ${CEGUILUA_VERSIONS}) 43 COMPARE_VERSION_STRINGS(${_version} ${CEGUI_VERSION} _compare_result) 44 IF(_compare_result EQUAL 1) 45 BREAK() # _version > CEGUI_VERSION 46 ENDIF() 43 47 44 ADD_SUBDIRECTORY(ceguilua-${_version}) # Sets parent scope variable 45 FOREACH(_file ${_package_files}) 46 CONFIGURE_FILE(ceguilua-${_version}/package/${_file} ${CEGUILUA_BINARY_DIR}/${_file} COPYONLY) 47 ENDFOREACH(_file) 48 ENDFOREACH(_version) 48 ADD_SUBDIRECTORY(ceguilua-${_version}) # Sets parent scope variable _package_files 49 FOREACH(_file ${_package_files}) 50 CONFIGURE_FILE(ceguilua-${_version}/package/${_file} ${CEGUILUA_BINARY_DIR}/${_file} COPYONLY) 51 ENDFOREACH(_file) 52 ENDFOREACH(_version) 53 ENDIF() 49 54 50 55 # Create the tolua bind file. We could use the orignal file though, but it is 1.6MB... … … 62 67 ) 63 68 64 ADD_COMPILER_FLAGS("-w44996" MSVC) 69 # No warnings needed from third party libraries 70 ADD_COMPILER_FLAGS("-w") 65 71 66 72 SOURCE_GROUP("Source" FILES ${CEGUILUA_FILES}) … … 76 82 ) 77 83 84 SET_TARGET_PROPERTIES(ceguilua_orxonox PROPERTIES VERSION ${CEGUI_VERSION}) 85 78 86 ORXONOX_INSTALL(ceguilua_orxonox) -
code/branches/buildsystem3/src/cpptcl/CMakeLists.txt
r2664 r2670 33 33 GENERATE_SOURCE_GROUPS(${CPPTCL_FILES}) 34 34 35 # No warnings needed from third party libraries 36 ADD_COMPILER_FLAGS("-w") 37 35 38 IF(MSVC) 36 39 ADD_LIBRARY(cpptcl_orxonox STATIC ${CPPTCL_FILES}) … … 41 44 42 45 TARGET_LINK_LIBRARIES(cpptcl_orxonox ${TCL_LIBRARY}) 46 47 SET_TARGET_PROPERTIES(cpptcl_orxonox PROPERTIES VERSION 1.1.3) -
code/branches/buildsystem3/src/ogreceguirenderer/CMakeLists.txt
r2664 r2670 29 29 GENERATE_SOURCE_GROUPS(${OCR_FILES}) 30 30 31 # No warnings needed from third party libraries 32 ADD_COMPILER_FLAGS("-w") 33 31 34 ADD_LIBRARY(ogreceguirenderer_orxonox SHARED ${OCR_FILES}) 32 35 SET_TARGET_PROPERTIES(ogreceguirenderer_orxonox PROPERTIES DEFINE_SYMBOL "OGRE_GUIRENDERER_EXPORTS") … … 36 39 ) 37 40 41 SET_TARGET_PROPERTIES(ogreceguirenderer_orxonox PROPERTIES VERSION 1.4.9) 42 38 43 ORXONOX_INSTALL(ogreceguirenderer_orxonox) -
code/branches/buildsystem3/src/ois/CMakeLists.txt
r2664 r2670 52 52 GENERATE_SOURCE_GROUPS(${OIS_FILES}) 53 53 54 # No warnings needed from third party libraries 55 ADD_COMPILER_FLAGS("-w") 56 # Multibyte character required for OIS 54 57 REMOVE_COMPILER_FLAGS("-DUNICODE -D_UNICODE" MSVC) 58 55 59 INCLUDE_DIRECTORIES(.) 56 60 … … 62 66 ENDIF() 63 67 68 SET_TARGET_PROPERTIES(ois_orxonox PROPERTIES VERSION 1.2) 69 64 70 ORXONOX_INSTALL(ois_orxonox) -
code/branches/buildsystem3/src/orxonox/CMakeLists.txt
r2664 r2670 69 69 tinyxml++_orxonox 70 70 tolua++_orxonox 71 BulletDynamics 72 BulletCollision 73 LinearMath 71 bullet_orxonox 74 72 util 75 73 core -
code/branches/buildsystem3/src/tinyxml/CMakeLists.txt
r2664 r2670 32 32 GENERATE_SOURCE_GROUPS(${TINYXML++_FILES}) 33 33 34 # No warnings needed from third party libraries 35 ADD_COMPILER_FLAGS("-w") 36 34 37 IF(MSVC) 35 38 ADD_LIBRARY(tinyxml++_orxonox STATIC ${TINYXML++_FILES}) … … 38 41 ORXONOX_INSTALL(tinyxml++_orxonox) 39 42 ENDIF() 43 44 SET_TARGET_PROPERTIES(tinyxml++_orxonox PROPERTIES VERSION 2.5.3) -
code/branches/buildsystem3/src/tinyxml/VERSION
r2664 r2670 1 TinyXML++ trunk checkout revision 98. 1 TinyXML++ trunk checkout revision 98. Built on top of TinyXML 2.5.3 -
code/branches/buildsystem3/src/tolua/CMakeLists.txt
r2664 r2670 32 32 GENERATE_SOURCE_GROUPS(${TOLUA++_FILES}) 33 33 34 ADD_COMPILER_FLAGS("-w44996" MSVC) 34 # No warnings needed from third party libraries 35 ADD_COMPILER_FLAGS("-w") 35 36 36 37 ADD_LIBRARY(tolua++_orxonox SHARED ${TOLUA++_FILES}) 37 38 SET_TARGET_PROPERTIES(tolua++_orxonox PROPERTIES DEFINE_SYMBOL "TOLUA_SHARED_BUILD") 38 39 TARGET_LINK_LIBRARIES(tolua++_orxonox ${LUA_LIBRARIES}) 40 41 SET_TARGET_PROPERTIES(tolua++_orxonox PROPERTIES VERSION 1.0.92) 39 42 40 43 ORXONOX_INSTALL(tolua++_orxonox)
Note: See TracChangeset
for help on using the changeset viewer.