reactphysics3d/test/CMakeLists.txt

50 lines
1.3 KiB
CMake
Raw Normal View History

2013-03-06 06:30:33 +00:00
# Minimum cmake version required
CMAKE_MINIMUM_REQUIRED(VERSION 3.2 FATAL_ERROR)
2013-03-06 06:30:33 +00:00
# Project configuration
PROJECT(TESTS)
# Header files
SET (RP3D_TESTS_HEADERS
"Test.h"
"TestSuite.h"
"tests/collision/TestAABB.h"
"tests/collision/TestCollisionWorld.h"
"tests/collision/TestDynamicAABBTree.h"
"tests/collision/TestHalfEdgeStructure.h"
"tests/collision/TestPointInside.h"
"tests/collision/TestRaycast.h"
"tests/collision/TestTriangleVertexArray.h"
"tests/containers/TestList.h"
"tests/containers/TestMap.h"
"tests/containers/TestSet.h"
"tests/containers/TestStack.h"
2018-12-13 23:02:40 +00:00
"tests/containers/TestDeque.h"
"tests/mathematics/TestMathematicsFunctions.h"
"tests/mathematics/TestMatrix2x2.h"
"tests/mathematics/TestMatrix3x3.h"
"tests/mathematics/TestQuaternion.h"
"tests/mathematics/TestTransform.h"
"tests/mathematics/TestVector2.h"
"tests/mathematics/TestVector3.h"
)
2013-03-06 06:30:33 +00:00
# Source files
SET (RP3D_TESTS_SOURCES
"main.cpp"
"Test.cpp"
"TestSuite.cpp"
2013-03-06 06:30:33 +00:00
)
# Create the tests executable
ADD_EXECUTABLE(tests ${RP3D_TESTS_HEADERS} ${RP3D_TESTS_SOURCES})
# Headers
TARGET_INCLUDE_DIRECTORIES(reactphysics3d PUBLIC
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>
)
2013-03-06 06:30:33 +00:00
TARGET_LINK_LIBRARIES(tests reactphysics3d)
ADD_TEST(Test tests)