211 lines
7.6 KiB
CMake
211 lines
7.6 KiB
CMake
# Minimum cmake version required
|
|
CMAKE_MINIMUM_REQUIRED(VERSION 2.8.3)
|
|
|
|
# Project configuration
|
|
PROJECT(REACTPHYSICS3D CXX)
|
|
|
|
# Build type
|
|
IF (NOT CMAKE_BUILD_TYPE)
|
|
SET(CMAKE_BUILD_TYPE "Release")
|
|
ENDIF (NOT CMAKE_BUILD_TYPE)
|
|
|
|
# Where to build the library
|
|
SET(LIBRARY_OUTPUT_PATH "lib")
|
|
|
|
# Where to build the executables
|
|
SET(OUR_EXECUTABLE_OUTPUT_PATH "${PROJECT_BINARY_DIR}/bin")
|
|
|
|
ENABLE_TESTING()
|
|
|
|
# Options
|
|
OPTION(COMPILE_TESTBED "Select this if you want to build the testbed application" OFF)
|
|
OPTION(COMPILE_TESTS "Select this if you want to build the tests" OFF)
|
|
OPTION(PROFILING_ENABLED "Select this if you want to compile with enabled profiling" OFF)
|
|
OPTION(DOUBLE_PRECISION_ENABLED "Select this if you want to compile using double precision floating
|
|
values" OFF)
|
|
|
|
# Warning Compiler flags
|
|
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall")
|
|
|
|
# C++11 flags
|
|
IF(CMAKE_CXX_COMPILER_ID MATCHES "Clang" OR CMAKE_CXX_COMPILER_ID MATCHES "GNU")
|
|
include(CheckCXXCompilerFlag)
|
|
CHECK_CXX_COMPILER_FLAG("-std=c++11" COMPILER_SUPPORTS_CXX11)
|
|
IF(COMPILER_SUPPORTS_CXX11)
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
|
|
ELSE()
|
|
message("The compiler ${CMAKE_CXX_COMPILER} has no C++11 support. Please use a different C++ compiler.")
|
|
ENDIF()
|
|
ENDIF()
|
|
|
|
# Headers
|
|
INCLUDE_DIRECTORIES(src)
|
|
|
|
IF(PROFILING_ENABLED)
|
|
ADD_DEFINITIONS(-DIS_PROFILING_ACTIVE)
|
|
ENDIF(PROFILING_ENABLED)
|
|
|
|
IF(DOUBLE_PRECISION_ENABLED)
|
|
ADD_DEFINITIONS(-DIS_DOUBLE_PRECISION_ENABLED)
|
|
ENDIF(DOUBLE_PRECISION_ENABLED)
|
|
|
|
# Source files
|
|
SET (REACTPHYSICS3D_SOURCES
|
|
"src/configuration.h"
|
|
"src/decimal.h"
|
|
"src/reactphysics3d.h"
|
|
"src/body/Body.h"
|
|
"src/body/Body.cpp"
|
|
"src/body/CollisionBody.h"
|
|
"src/body/CollisionBody.cpp"
|
|
"src/body/RigidBody.h"
|
|
"src/body/RigidBody.cpp"
|
|
"src/collision/ContactPointInfo.h"
|
|
"src/collision/ContactManifoldInfo.h"
|
|
"src/collision/ContactManifoldInfo.cpp"
|
|
"src/collision/broadphase/BroadPhaseAlgorithm.h"
|
|
"src/collision/broadphase/BroadPhaseAlgorithm.cpp"
|
|
"src/collision/broadphase/DynamicAABBTree.h"
|
|
"src/collision/broadphase/DynamicAABBTree.cpp"
|
|
"src/collision/narrowphase/CollisionDispatch.h"
|
|
"src/collision/narrowphase/DefaultCollisionDispatch.h"
|
|
"src/collision/narrowphase/DefaultCollisionDispatch.cpp"
|
|
"src/collision/narrowphase/GJK/VoronoiSimplex.h"
|
|
"src/collision/narrowphase/GJK/VoronoiSimplex.cpp"
|
|
"src/collision/narrowphase/GJK/GJKAlgorithm.h"
|
|
"src/collision/narrowphase/GJK/GJKAlgorithm.cpp"
|
|
"src/collision/narrowphase/SAT/SATAlgorithm.h"
|
|
"src/collision/narrowphase/SAT/SATAlgorithm.cpp"
|
|
"src/collision/narrowphase/NarrowPhaseAlgorithm.h"
|
|
"src/collision/narrowphase/SphereVsSphereAlgorithm.h"
|
|
"src/collision/narrowphase/SphereVsSphereAlgorithm.cpp"
|
|
"src/collision/narrowphase/CapsuleVsCapsuleAlgorithm.h"
|
|
"src/collision/narrowphase/CapsuleVsCapsuleAlgorithm.cpp"
|
|
"src/collision/narrowphase/SphereVsCapsuleAlgorithm.h"
|
|
"src/collision/narrowphase/SphereVsCapsuleAlgorithm.cpp"
|
|
"src/collision/narrowphase/SphereVsConvexPolyhedronAlgorithm.h"
|
|
"src/collision/narrowphase/SphereVsConvexPolyhedronAlgorithm.cpp"
|
|
"src/collision/narrowphase/CapsuleVsConvexPolyhedronAlgorithm.h"
|
|
"src/collision/narrowphase/CapsuleVsConvexPolyhedronAlgorithm.cpp"
|
|
"src/collision/narrowphase/ConvexPolyhedronVsConvexPolyhedronAlgorithm.h"
|
|
"src/collision/narrowphase/ConvexPolyhedronVsConvexPolyhedronAlgorithm.cpp"
|
|
"src/collision/shapes/AABB.h"
|
|
"src/collision/shapes/AABB.cpp"
|
|
"src/collision/shapes/ConvexShape.h"
|
|
"src/collision/shapes/ConvexShape.cpp"
|
|
"src/collision/shapes/ConvexPolyhedronShape.h"
|
|
"src/collision/shapes/ConvexPolyhedronShape.cpp"
|
|
"src/collision/shapes/ConcaveShape.h"
|
|
"src/collision/shapes/ConcaveShape.cpp"
|
|
"src/collision/shapes/BoxShape.h"
|
|
"src/collision/shapes/BoxShape.cpp"
|
|
"src/collision/shapes/CapsuleShape.h"
|
|
"src/collision/shapes/CapsuleShape.cpp"
|
|
"src/collision/shapes/CollisionShape.h"
|
|
"src/collision/shapes/CollisionShape.cpp"
|
|
"src/collision/shapes/ConvexMeshShape.h"
|
|
"src/collision/shapes/ConvexMeshShape.cpp"
|
|
"src/collision/shapes/SphereShape.h"
|
|
"src/collision/shapes/SphereShape.cpp"
|
|
"src/collision/shapes/TriangleShape.h"
|
|
"src/collision/shapes/TriangleShape.cpp"
|
|
"src/collision/shapes/ConcaveMeshShape.h"
|
|
"src/collision/shapes/ConcaveMeshShape.cpp"
|
|
"src/collision/shapes/HeightFieldShape.h"
|
|
"src/collision/shapes/HeightFieldShape.cpp"
|
|
"src/collision/RaycastInfo.h"
|
|
"src/collision/RaycastInfo.cpp"
|
|
"src/collision/ProxyShape.h"
|
|
"src/collision/ProxyShape.cpp"
|
|
"src/collision/TriangleVertexArray.h"
|
|
"src/collision/TriangleVertexArray.cpp"
|
|
"src/collision/PolygonVertexArray.h"
|
|
"src/collision/PolygonVertexArray.cpp"
|
|
"src/collision/TriangleMesh.h"
|
|
"src/collision/TriangleMesh.cpp"
|
|
"src/collision/PolyhedronMesh.h"
|
|
"src/collision/PolyhedronMesh.cpp"
|
|
"src/collision/HalfEdgeStructure.h"
|
|
"src/collision/HalfEdgeStructure.cpp"
|
|
"src/collision/CollisionDetection.h"
|
|
"src/collision/CollisionDetection.cpp"
|
|
"src/collision/NarrowPhaseInfo.h"
|
|
"src/collision/NarrowPhaseInfo.cpp"
|
|
"src/collision/ContactManifold.h"
|
|
"src/collision/ContactManifold.cpp"
|
|
"src/collision/ContactManifoldSet.h"
|
|
"src/collision/ContactManifoldSet.cpp"
|
|
"src/collision/MiddlePhaseTriangleCallback.h"
|
|
"src/collision/MiddlePhaseTriangleCallback.cpp"
|
|
"src/constraint/BallAndSocketJoint.h"
|
|
"src/constraint/BallAndSocketJoint.cpp"
|
|
"src/constraint/ContactPoint.h"
|
|
"src/constraint/ContactPoint.cpp"
|
|
"src/constraint/FixedJoint.h"
|
|
"src/constraint/FixedJoint.cpp"
|
|
"src/constraint/HingeJoint.h"
|
|
"src/constraint/HingeJoint.cpp"
|
|
"src/constraint/Joint.h"
|
|
"src/constraint/Joint.cpp"
|
|
"src/constraint/SliderJoint.h"
|
|
"src/constraint/SliderJoint.cpp"
|
|
"src/engine/CollisionWorld.h"
|
|
"src/engine/CollisionWorld.cpp"
|
|
"src/engine/ConstraintSolver.h"
|
|
"src/engine/ConstraintSolver.cpp"
|
|
"src/engine/ContactSolver.h"
|
|
"src/engine/ContactSolver.cpp"
|
|
"src/engine/DynamicsWorld.h"
|
|
"src/engine/DynamicsWorld.cpp"
|
|
"src/engine/EventListener.h"
|
|
"src/engine/Island.h"
|
|
"src/engine/Island.cpp"
|
|
"src/engine/Material.h"
|
|
"src/engine/Material.cpp"
|
|
"src/engine/OverlappingPair.h"
|
|
"src/engine/OverlappingPair.cpp"
|
|
"src/engine/Profiler.h"
|
|
"src/engine/Profiler.cpp"
|
|
"src/engine/Timer.h"
|
|
"src/engine/Timer.cpp"
|
|
"src/collision/CollisionCallback.h"
|
|
"src/collision/CollisionCallback.cpp"
|
|
"src/collision/OverlapCallback.h"
|
|
"src/mathematics/mathematics.h"
|
|
"src/mathematics/mathematics_functions.h"
|
|
"src/mathematics/mathematics_functions.cpp"
|
|
"src/mathematics/Matrix2x2.h"
|
|
"src/mathematics/Matrix2x2.cpp"
|
|
"src/mathematics/Matrix3x3.h"
|
|
"src/mathematics/Matrix3x3.cpp"
|
|
"src/mathematics/Quaternion.h"
|
|
"src/mathematics/Quaternion.cpp"
|
|
"src/mathematics/Transform.h"
|
|
"src/mathematics/Transform.cpp"
|
|
"src/mathematics/Vector2.h"
|
|
"src/mathematics/Vector2.cpp"
|
|
"src/mathematics/Vector3.h"
|
|
"src/mathematics/Ray.h"
|
|
"src/mathematics/Vector3.cpp"
|
|
"src/memory/Allocator.h"
|
|
"src/memory/PoolAllocator.h"
|
|
"src/memory/PoolAllocator.cpp"
|
|
"src/memory/SingleFrameAllocator.h"
|
|
"src/memory/SingleFrameAllocator.cpp"
|
|
"src/containers/Stack.h"
|
|
"src/containers/LinkedList.h"
|
|
)
|
|
|
|
# Create the library
|
|
ADD_LIBRARY(reactphysics3d STATIC ${REACTPHYSICS3D_SOURCES})
|
|
|
|
# If we need to compile the testbed application
|
|
IF(COMPILE_TESTBED)
|
|
add_subdirectory(testbed/)
|
|
ENDIF(COMPILE_TESTBED)
|
|
|
|
# If we need to compile the tests
|
|
IF(COMPILE_TESTS)
|
|
add_subdirectory(test/)
|
|
ENDIF(COMPILE_TESTS)
|