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.8)
2013-03-06 06:30:33 +00:00
# Project configuration
project(TESTS)
2013-03-06 06:30:33 +00:00
# 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)