reactphysics3d/CMakeLists.txt

289 lines
10 KiB
CMake
Raw Normal View History

# Minimum cmake version required
CMAKE_MINIMUM_REQUIRED(VERSION 3.2 FATAL_ERROR)
# Project configuration
PROJECT(REACTPHYSICS3D LANGUAGES CXX)
# In order to install libraries into correct locations on all platforms.
include(GNUInstallDirs)
2012-07-31 21:48:35 +00:00
# Build type
IF (NOT CMAKE_BUILD_TYPE)
SET(CMAKE_BUILD_TYPE "Release")
2018-04-11 15:19:41 +00:00
ENDIF()
2012-07-31 21:48:35 +00:00
# Where to build the library
SET(LIBRARY_OUTPUT_PATH "lib")
# Where to build the executables
SET(OUR_EXECUTABLE_OUTPUT_PATH "${PROJECT_BINARY_DIR}/bin")
2012-07-31 21:48:35 +00:00
2018-04-04 19:53:01 +00:00
# CMake modules path
SET(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/CMakeModules)
# Enable testing
ENABLE_TESTING()
2012-07-31 21:48:35 +00:00
# Options
2018-04-11 15:19:41 +00:00
OPTION(RP3D_COMPILE_TESTBED "Select this if you want to build the testbed application" OFF)
OPTION(RP3D_COMPILE_TESTS "Select this if you want to build the tests" OFF)
OPTION(RP3D_PROFILING_ENABLED "Select this if you want to compile with enabled profiling" OFF)
OPTION(RP3D_LOGS_ENABLED "Select this if you want to compile with logs enabled during execution" OFF)
OPTION(RP3D_CODE_COVERAGE_ENABLED "Select this if you need to build for code coverage calculation" OFF)
OPTION(RP3D_DOUBLE_PRECISION_ENABLED "Select this if you want to compile using double precision floating
2013-05-12 12:08:30 +00:00
values" OFF)
2015-08-17 04:44:26 +00:00
2018-04-11 15:19:41 +00:00
# Warning Compiler flags
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall")
2018-04-11 15:19:41 +00:00
IF(RP3D_CODE_COVERAGE_ENABLED)
2018-04-04 19:53:01 +00:00
IF(CMAKE_COMPILER_IS_GNUCXX)
INCLUDE(CodeCoverage)
SETUP_TARGET_FOR_COVERAGE(${PROJECT_NAME}_coverage tests coverage)
ENDIF()
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -g -O0 -fprofile-arcs -ftest-coverage")
ENDIF()
# 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()
2015-08-17 04:44:26 +00:00
2018-04-05 05:40:01 +00:00
# Use libc++ with Clang
2018-04-05 05:13:35 +00:00
#IF(CMAKE_CXX_COMPILER_ID MATCHES "Clang")
# SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++")
#ENDIF()
2018-04-04 19:53:01 +00:00
2018-04-11 15:19:41 +00:00
IF(RP3D_PROFILING_ENABLED)
ADD_DEFINITIONS(-DIS_PROFILING_ACTIVE)
2018-04-11 15:19:41 +00:00
ENDIF()
2018-04-11 15:19:41 +00:00
IF(RP3D_LOGS_ENABLED)
ADD_DEFINITIONS(-DIS_LOGGING_ACTIVE)
2018-04-11 15:19:41 +00:00
ENDIF()
2018-04-11 15:19:41 +00:00
IF(RP3D_DOUBLE_PRECISION_ENABLED)
ADD_DEFINITIONS(-DIS_DOUBLE_PRECISION_ENABLED)
2018-04-11 15:19:41 +00:00
ENDIF()
# Headers files
SET (REACTPHYSICS3D_HEADERS
"src/configuration.h"
"src/decimal.h"
"src/reactphysics3d.h"
"src/body/CollisionBody.h"
"src/body/RigidBody.h"
"src/collision/ContactPointInfo.h"
2019-04-19 09:20:21 +00:00
"src/collision/ContactManifoldInfo.h"
"src/collision/ContactPair.h"
2014-03-16 19:59:10 +00:00
"src/collision/broadphase/DynamicAABBTree.h"
"src/collision/narrowphase/CollisionDispatch.h"
"src/collision/narrowphase/GJK/VoronoiSimplex.h"
"src/collision/narrowphase/GJK/GJKAlgorithm.h"
"src/collision/narrowphase/SAT/SATAlgorithm.h"
"src/collision/narrowphase/NarrowPhaseAlgorithm.h"
"src/collision/narrowphase/SphereVsSphereAlgorithm.h"
"src/collision/narrowphase/CapsuleVsCapsuleAlgorithm.h"
"src/collision/narrowphase/SphereVsCapsuleAlgorithm.h"
"src/collision/narrowphase/SphereVsConvexPolyhedronAlgorithm.h"
"src/collision/narrowphase/CapsuleVsConvexPolyhedronAlgorithm.h"
"src/collision/narrowphase/ConvexPolyhedronVsConvexPolyhedronAlgorithm.h"
"src/collision/narrowphase/NarrowPhaseInput.h"
"src/collision/narrowphase/NarrowPhaseInfoBatch.h"
"src/collision/narrowphase/SphereVsSphereNarrowPhaseInfoBatch.h"
"src/collision/narrowphase/CapsuleVsCapsuleNarrowPhaseInfoBatch.h"
"src/collision/narrowphase/SphereVsCapsuleNarrowPhaseInfoBatch.h"
"src/collision/shapes/AABB.h"
"src/collision/shapes/ConvexShape.h"
"src/collision/shapes/ConvexPolyhedronShape.h"
"src/collision/shapes/ConcaveShape.h"
"src/collision/shapes/BoxShape.h"
"src/collision/shapes/CapsuleShape.h"
"src/collision/shapes/CollisionShape.h"
"src/collision/shapes/ConvexMeshShape.h"
"src/collision/shapes/SphereShape.h"
"src/collision/shapes/TriangleShape.h"
"src/collision/shapes/ConcaveMeshShape.h"
2016-01-14 20:34:30 +00:00
"src/collision/shapes/HeightFieldShape.h"
2014-07-21 21:08:18 +00:00
"src/collision/RaycastInfo.h"
"src/collision/ProxyShape.h"
"src/collision/TriangleVertexArray.h"
"src/collision/PolygonVertexArray.h"
"src/collision/TriangleMesh.h"
"src/collision/PolyhedronMesh.h"
"src/collision/HalfEdgeStructure.h"
"src/collision/CollisionDetection.h"
2015-10-02 05:04:05 +00:00
"src/collision/ContactManifold.h"
"src/constraint/BallAndSocketJoint.h"
"src/constraint/ContactPoint.h"
"src/constraint/FixedJoint.h"
"src/constraint/HingeJoint.h"
"src/constraint/Joint.h"
"src/constraint/SliderJoint.h"
2018-12-23 22:18:05 +00:00
"src/engine/Entity.h"
"src/engine/EntityManager.h"
"src/engine/CollisionWorld.h"
2019-08-08 15:45:22 +00:00
"src/systems/ConstraintSolverSystem.h"
"src/systems/ContactSolverSystem.h"
"src/systems/DynamicsSystem.h"
"src/engine/DynamicsWorld.h"
"src/engine/EventListener.h"
"src/engine/Island.h"
2019-04-27 13:02:21 +00:00
"src/engine/Islands.h"
"src/engine/Material.h"
"src/engine/OverlappingPair.h"
"src/engine/Timer.h"
2019-03-04 16:29:27 +00:00
"src/systems/BroadPhaseSystem.h"
2019-01-08 17:39:36 +00:00
"src/components/Components.h"
"src/components/CollisionBodyComponents.h"
2019-07-16 05:15:13 +00:00
"src/components/RigidBodyComponents.h"
2018-12-23 22:18:05 +00:00
"src/components/TransformComponents.h"
"src/components/ProxyShapeComponents.h"
"src/collision/CollisionCallback.h"
"src/collision/OverlapCallback.h"
"src/mathematics/mathematics.h"
"src/mathematics/mathematics_functions.h"
"src/mathematics/Matrix2x2.h"
"src/mathematics/Matrix3x3.h"
"src/mathematics/Quaternion.h"
"src/mathematics/Transform.h"
"src/mathematics/Vector2.h"
"src/mathematics/Vector3.h"
"src/mathematics/Ray.h"
2018-01-01 17:35:57 +00:00
"src/memory/MemoryAllocator.h"
"src/memory/PoolAllocator.h"
"src/memory/SingleFrameAllocator.h"
2017-12-06 20:55:50 +00:00
"src/memory/DefaultAllocator.h"
"src/memory/MemoryManager.h"
2017-01-08 18:56:59 +00:00
"src/containers/Stack.h"
"src/containers/LinkedList.h"
2017-12-06 20:55:50 +00:00
"src/containers/List.h"
2018-01-14 09:47:39 +00:00
"src/containers/Map.h"
"src/containers/Set.h"
2018-02-05 06:41:02 +00:00
"src/containers/Pair.h"
2018-12-13 23:02:40 +00:00
"src/containers/Deque.h"
"src/utils/Profiler.h"
"src/utils/Logger.h"
)
# Source files
SET (REACTPHYSICS3D_SOURCES
"src/body/CollisionBody.cpp"
"src/body/RigidBody.cpp"
"src/collision/broadphase/DynamicAABBTree.cpp"
"src/collision/narrowphase/CollisionDispatch.cpp"
"src/collision/narrowphase/GJK/VoronoiSimplex.cpp"
"src/collision/narrowphase/GJK/GJKAlgorithm.cpp"
"src/collision/narrowphase/SAT/SATAlgorithm.cpp"
"src/collision/narrowphase/SphereVsSphereAlgorithm.cpp"
"src/collision/narrowphase/CapsuleVsCapsuleAlgorithm.cpp"
"src/collision/narrowphase/SphereVsCapsuleAlgorithm.cpp"
"src/collision/narrowphase/SphereVsConvexPolyhedronAlgorithm.cpp"
"src/collision/narrowphase/CapsuleVsConvexPolyhedronAlgorithm.cpp"
"src/collision/narrowphase/ConvexPolyhedronVsConvexPolyhedronAlgorithm.cpp"
"src/collision/narrowphase/NarrowPhaseInput.cpp"
"src/collision/narrowphase/NarrowPhaseInfoBatch.cpp"
"src/collision/narrowphase/SphereVsSphereNarrowPhaseInfoBatch.cpp"
"src/collision/narrowphase/CapsuleVsCapsuleNarrowPhaseInfoBatch.cpp"
"src/collision/narrowphase/SphereVsCapsuleNarrowPhaseInfoBatch.cpp"
"src/collision/shapes/AABB.cpp"
"src/collision/shapes/ConvexShape.cpp"
"src/collision/shapes/ConvexPolyhedronShape.cpp"
"src/collision/shapes/ConcaveShape.cpp"
"src/collision/shapes/BoxShape.cpp"
"src/collision/shapes/CapsuleShape.cpp"
"src/collision/shapes/CollisionShape.cpp"
"src/collision/shapes/ConvexMeshShape.cpp"
"src/collision/shapes/SphereShape.cpp"
"src/collision/shapes/TriangleShape.cpp"
"src/collision/shapes/ConcaveMeshShape.cpp"
"src/collision/shapes/HeightFieldShape.cpp"
"src/collision/RaycastInfo.cpp"
"src/collision/ProxyShape.cpp"
"src/collision/TriangleVertexArray.cpp"
"src/collision/PolygonVertexArray.cpp"
"src/collision/TriangleMesh.cpp"
"src/collision/PolyhedronMesh.cpp"
"src/collision/HalfEdgeStructure.cpp"
"src/collision/CollisionDetection.cpp"
"src/collision/ContactManifold.cpp"
"src/constraint/BallAndSocketJoint.cpp"
"src/constraint/ContactPoint.cpp"
"src/constraint/FixedJoint.cpp"
"src/constraint/HingeJoint.cpp"
"src/constraint/Joint.cpp"
"src/constraint/SliderJoint.cpp"
"src/engine/CollisionWorld.cpp"
2019-08-08 15:45:22 +00:00
"src/systems/ConstraintSolverSystem.cpp"
"src/systems/ContactSolverSystem.cpp"
"src/systems/DynamicsSystem.cpp"
"src/engine/DynamicsWorld.cpp"
"src/engine/Island.cpp"
"src/engine/Material.cpp"
"src/engine/OverlappingPair.cpp"
"src/engine/Timer.cpp"
2018-12-23 22:18:05 +00:00
"src/engine/Entity.cpp"
"src/engine/EntityManager.cpp"
2019-03-04 16:29:27 +00:00
"src/systems/BroadPhaseSystem.cpp"
2019-03-16 06:50:34 +00:00
"src/components/Components.cpp"
"src/components/CollisionBodyComponents.cpp"
2019-07-16 05:15:13 +00:00
"src/components/RigidBodyComponents.cpp"
2018-12-23 22:18:05 +00:00
"src/components/TransformComponents.cpp"
"src/components/ProxyShapeComponents.cpp"
"src/collision/CollisionCallback.cpp"
"src/collision/OverlapCallback.cpp"
"src/mathematics/mathematics_functions.cpp"
"src/mathematics/Matrix2x2.cpp"
"src/mathematics/Matrix3x3.cpp"
"src/mathematics/Quaternion.cpp"
"src/mathematics/Transform.cpp"
"src/mathematics/Vector2.cpp"
"src/mathematics/Vector3.cpp"
"src/memory/PoolAllocator.cpp"
"src/memory/SingleFrameAllocator.cpp"
"src/memory/MemoryManager.cpp"
"src/utils/Profiler.cpp"
"src/utils/Logger.cpp"
)
2012-07-31 21:48:35 +00:00
# Create the library
ADD_LIBRARY(reactphysics3d ${REACTPHYSICS3D_HEADERS} ${REACTPHYSICS3D_SOURCES})
# Headers
TARGET_INCLUDE_DIRECTORIES(reactphysics3d PUBLIC
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/src>
$<INSTALL_INTERFACE:include>
)
2015-04-08 18:50:31 +00:00
# If we need to compile the testbed application
2018-04-11 15:19:41 +00:00
IF(RP3D_COMPILE_TESTBED)
2015-04-08 18:50:31 +00:00
add_subdirectory(testbed/)
2018-04-11 15:19:41 +00:00
ENDIF()
# If we need to compile the tests
2018-04-11 15:19:41 +00:00
IF(RP3D_COMPILE_TESTS)
add_subdirectory(test/)
2018-04-11 15:19:41 +00:00
ENDIF()
SET_TARGET_PROPERTIES(reactphysics3d PROPERTIES PUBLIC_HEADER "${REACTPHYSICS3D_HEADERS}")
# Version number and soname for the library
SET_TARGET_PROPERTIES(reactphysics3d PROPERTIES
VERSION "0.7.0"
SOVERSION "0.7"
)
# Install target
INSTALL(TARGETS reactphysics3d
2018-04-11 15:19:41 +00:00
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
PUBLIC_HEADER DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/reactphysics3d
)