mirror of https://github.com/mosra/magnum.git
8 changed files with 46 additions and 46 deletions
@ -1 +1 @@
|
||||
corrade_add_test2(MathAlgorithmsGaussJordanTest GaussJordanTest.cpp LIBRARIES MagnumMathTestLib) |
||||
corrade_add_test(MathAlgorithmsGaussJordanTest GaussJordanTest.cpp LIBRARIES MagnumMathTestLib) |
||||
|
||||
@ -1,2 +1,2 @@
|
||||
corrade_add_test2(MathGeometryDistanceTest DistanceTest.cpp) |
||||
corrade_add_test2(MathGeometryIntersectionTest IntersectionTest.cpp) |
||||
corrade_add_test(MathGeometryDistanceTest DistanceTest.cpp) |
||||
corrade_add_test(MathGeometryIntersectionTest IntersectionTest.cpp) |
||||
|
||||
@ -1,19 +1,19 @@
|
||||
corrade_add_test2(MathConstantsTest ConstantsTest.cpp) |
||||
corrade_add_test2(MathTest MathTest.cpp LIBRARIES MagnumMathTestLib) |
||||
corrade_add_test2(MathMathTypeTraitsTest MathTypeTraitsTest.cpp) |
||||
corrade_add_test(MathConstantsTest ConstantsTest.cpp) |
||||
corrade_add_test(MathTest MathTest.cpp LIBRARIES MagnumMathTestLib) |
||||
corrade_add_test(MathMathTypeTraitsTest MathTypeTraitsTest.cpp) |
||||
|
||||
corrade_add_test2(MathRectangularMatrixTest RectangularMatrixTest.cpp LIBRARIES MagnumMathTestLib) |
||||
corrade_add_test(MathRectangularMatrixTest RectangularMatrixTest.cpp LIBRARIES MagnumMathTestLib) |
||||
|
||||
corrade_add_test2(MathVectorTest VectorTest.cpp LIBRARIES MagnumMathTestLib) |
||||
corrade_add_test2(MathVector2Test Vector2Test.cpp LIBRARIES MagnumMathTestLib) |
||||
corrade_add_test2(MathVector3Test Vector3Test.cpp LIBRARIES MagnumMathTestLib) |
||||
corrade_add_test2(MathVector4Test Vector4Test.cpp LIBRARIES MagnumMathTestLib) |
||||
corrade_add_test(MathVectorTest VectorTest.cpp LIBRARIES MagnumMathTestLib) |
||||
corrade_add_test(MathVector2Test Vector2Test.cpp LIBRARIES MagnumMathTestLib) |
||||
corrade_add_test(MathVector3Test Vector3Test.cpp LIBRARIES MagnumMathTestLib) |
||||
corrade_add_test(MathVector4Test Vector4Test.cpp LIBRARIES MagnumMathTestLib) |
||||
|
||||
corrade_add_test2(MathPoint2DTest Point2DTest.cpp LIBRARIES MagnumMathTestLib) |
||||
corrade_add_test2(MathPoint3DTest Point3DTest.cpp LIBRARIES MagnumMathTestLib) |
||||
corrade_add_test(MathPoint2DTest Point2DTest.cpp LIBRARIES MagnumMathTestLib) |
||||
corrade_add_test(MathPoint3DTest Point3DTest.cpp LIBRARIES MagnumMathTestLib) |
||||
|
||||
corrade_add_test2(MathMatrixTest MatrixTest.cpp LIBRARIES MagnumMathTestLib) |
||||
corrade_add_test2(MathMatrix3Test Matrix3Test.cpp LIBRARIES MagnumMathTestLib) |
||||
corrade_add_test2(MathMatrix4Test Matrix4Test.cpp LIBRARIES MagnumMathTestLib) |
||||
corrade_add_test(MathMatrixTest MatrixTest.cpp LIBRARIES MagnumMathTestLib) |
||||
corrade_add_test(MathMatrix3Test Matrix3Test.cpp LIBRARIES MagnumMathTestLib) |
||||
corrade_add_test(MathMatrix4Test Matrix4Test.cpp LIBRARIES MagnumMathTestLib) |
||||
|
||||
set_target_properties(MathVectorTest MathMatrix4Test PROPERTIES COMPILE_FLAGS -DCORRADE_GRACEFUL_ASSERT) |
||||
|
||||
@ -1,12 +1,12 @@
|
||||
corrade_add_test2(MeshToolsCleanTest CleanTest.cpp) |
||||
corrade_add_test2(MeshToolsCombineIndexedArraysTest CombineIndexedArraysTest.cpp) |
||||
corrade_add_test2(MeshToolsCompressIndicesTest CompressIndicesTest.cpp LIBRARIES MagnumMeshTools) |
||||
corrade_add_test2(MeshToolsFlipNormalsTest FlipNormalsTest.cpp LIBRARIES MagnumMeshToolsTestLib) |
||||
corrade_add_test2(MeshToolsGenerateFlatNormalsTest GenerateFlatNormalsTest.cpp LIBRARIES MagnumMeshToolsTestLib) |
||||
corrade_add_test2(MeshToolsInterleaveTest InterleaveTest.cpp) |
||||
corrade_add_test2(MeshToolsSubdivideTest SubdivideTest.cpp) |
||||
corrade_add_test(MeshToolsCleanTest CleanTest.cpp) |
||||
corrade_add_test(MeshToolsCombineIndexedArraysTest CombineIndexedArraysTest.cpp) |
||||
corrade_add_test(MeshToolsCompressIndicesTest CompressIndicesTest.cpp LIBRARIES MagnumMeshTools) |
||||
corrade_add_test(MeshToolsFlipNormalsTest FlipNormalsTest.cpp LIBRARIES MagnumMeshToolsTestLib) |
||||
corrade_add_test(MeshToolsGenerateFlatNormalsTest GenerateFlatNormalsTest.cpp LIBRARIES MagnumMeshToolsTestLib) |
||||
corrade_add_test(MeshToolsInterleaveTest InterleaveTest.cpp) |
||||
corrade_add_test(MeshToolsSubdivideTest SubdivideTest.cpp) |
||||
# corrade_add_test(MeshToolsSubdivideCleanBenchmark SubdivideCleanBenchmark.h SubdivideCleanBenchmark.cpp MagnumPrimitives) |
||||
corrade_add_test2(MeshToolsTipsifyTest TipsifyTest.cpp LIBRARIES MagnumMeshTools) |
||||
corrade_add_test(MeshToolsTipsifyTest TipsifyTest.cpp LIBRARIES MagnumMeshTools) |
||||
|
||||
# Graceful assert for testing |
||||
set_target_properties(MeshToolsCombineIndexedArraysTest MeshToolsInterleaveTest MeshToolsSubdivideTest PROPERTIES COMPILE_FLAGS -DCORRADE_GRACEFUL_ASSERT) |
||||
|
||||
@ -1,11 +1,11 @@
|
||||
corrade_add_test2(PhysicsAbstractShapeTest AbstractShapeTest.cpp LIBRARIES MagnumPhysics) |
||||
corrade_add_test2(PhysicsAxisAlignedBoxTest AxisAlignedBoxTest.cpp LIBRARIES MagnumPhysics) |
||||
corrade_add_test2(PhysicsBoxTest BoxTest.cpp LIBRARIES MagnumPhysics) |
||||
corrade_add_test2(PhysicsCapsuleTest CapsuleTest.cpp LIBRARIES MagnumPhysics) |
||||
corrade_add_test2(PhysicsLineTest LineTest.cpp LIBRARIES MagnumPhysics) |
||||
corrade_add_test2(PhysicsPlaneTest PlaneTest.cpp LIBRARIES MagnumPhysics) |
||||
corrade_add_test2(PhysicsPointTest PointTest.cpp LIBRARIES MagnumPhysics) |
||||
corrade_add_test2(PhysicsShapeGroupTest ShapeGroupTest.cpp LIBRARIES MagnumPhysics) |
||||
corrade_add_test2(PhysicsSphereTest SphereTest.cpp LIBRARIES MagnumPhysics) |
||||
corrade_add_test(PhysicsAbstractShapeTest AbstractShapeTest.cpp LIBRARIES MagnumPhysics) |
||||
corrade_add_test(PhysicsAxisAlignedBoxTest AxisAlignedBoxTest.cpp LIBRARIES MagnumPhysics) |
||||
corrade_add_test(PhysicsBoxTest BoxTest.cpp LIBRARIES MagnumPhysics) |
||||
corrade_add_test(PhysicsCapsuleTest CapsuleTest.cpp LIBRARIES MagnumPhysics) |
||||
corrade_add_test(PhysicsLineTest LineTest.cpp LIBRARIES MagnumPhysics) |
||||
corrade_add_test(PhysicsPlaneTest PlaneTest.cpp LIBRARIES MagnumPhysics) |
||||
corrade_add_test(PhysicsPointTest PointTest.cpp LIBRARIES MagnumPhysics) |
||||
corrade_add_test(PhysicsShapeGroupTest ShapeGroupTest.cpp LIBRARIES MagnumPhysics) |
||||
corrade_add_test(PhysicsSphereTest SphereTest.cpp LIBRARIES MagnumPhysics) |
||||
|
||||
corrade_add_test2(PhysicsObjectShapeTest ObjectShapeTest.cpp LIBRARIES MagnumPhysics) |
||||
corrade_add_test(PhysicsObjectShapeTest ObjectShapeTest.cpp LIBRARIES MagnumPhysics) |
||||
|
||||
@ -1,3 +1,3 @@
|
||||
corrade_add_test2(PrimitivesCapsuleTest CapsuleTest.cpp LIBRARIES MagnumPrimitives) |
||||
corrade_add_test2(PrimitivesUVSphereTest UVSphereTest.cpp LIBRARIES MagnumPrimitives) |
||||
corrade_add_test2(PrimitivesCylinderTest CylinderTest.cpp LIBRARIES MagnumPrimitives) |
||||
corrade_add_test(PrimitivesCapsuleTest CapsuleTest.cpp LIBRARIES MagnumPrimitives) |
||||
corrade_add_test(PrimitivesUVSphereTest UVSphereTest.cpp LIBRARIES MagnumPrimitives) |
||||
corrade_add_test(PrimitivesCylinderTest CylinderTest.cpp LIBRARIES MagnumPrimitives) |
||||
|
||||
@ -1,3 +1,3 @@
|
||||
corrade_add_test2(SceneGraphObjectTest ObjectTest.cpp LIBRARIES MagnumSceneGraphTestLib) |
||||
corrade_add_test2(SceneGraphCameraTest CameraTest.cpp LIBRARIES MagnumSceneGraph) |
||||
corrade_add_test2(SceneGraphSceneTest SceneTest.cpp LIBRARIES MagnumSceneGraph) |
||||
corrade_add_test(SceneGraphObjectTest ObjectTest.cpp LIBRARIES MagnumSceneGraphTestLib) |
||||
corrade_add_test(SceneGraphCameraTest CameraTest.cpp LIBRARIES MagnumSceneGraph) |
||||
corrade_add_test(SceneGraphSceneTest SceneTest.cpp LIBRARIES MagnumSceneGraph) |
||||
|
||||
@ -1,8 +1,8 @@
|
||||
corrade_add_test2(ArrayTest ArrayTest.cpp) |
||||
corrade_add_test2(ColorTest ColorTest.cpp LIBRARIES MagnumMathTestLib) |
||||
corrade_add_test2(MeshTest MeshTest.cpp LIBRARIES Magnum) |
||||
corrade_add_test2(ResourceManagerTest ResourceManagerTest.cpp LIBRARIES MagnumTestLib) |
||||
corrade_add_test2(SwizzleTest SwizzleTest.cpp LIBRARIES MagnumMathTestLib) |
||||
corrade_add_test2(TypeTraitsTest TypeTraitsTest.cpp LIBRARIES Magnum) |
||||
corrade_add_test(ArrayTest ArrayTest.cpp) |
||||
corrade_add_test(ColorTest ColorTest.cpp LIBRARIES MagnumMathTestLib) |
||||
corrade_add_test(MeshTest MeshTest.cpp LIBRARIES Magnum) |
||||
corrade_add_test(ResourceManagerTest ResourceManagerTest.cpp LIBRARIES MagnumTestLib) |
||||
corrade_add_test(SwizzleTest SwizzleTest.cpp LIBRARIES MagnumMathTestLib) |
||||
corrade_add_test(TypeTraitsTest TypeTraitsTest.cpp LIBRARIES Magnum) |
||||
|
||||
set_target_properties(ResourceManagerTest PROPERTIES COMPILE_FLAGS -DCORRADE_GRACEFUL_ASSERT) |
||||
|
||||
Loading…
Reference in new issue