mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
move GLMTestUtils.h where all tests can find it
This commit is contained in:
parent
ba5346aee7
commit
cae77cfd76
5 changed files with 5 additions and 4 deletions
|
@ -12,7 +12,7 @@ foreach(DIR ${TEST_SUBDIRS})
|
|||
endif()
|
||||
endforeach()
|
||||
|
||||
file(GLOB SHARED_TEST_HEADER_FILES "${CMAKE_CURRENT_SOURCE_DIR}/*.h" "${CMAKE_CURRENT_SOURCE_DIR}/*.hpp")
|
||||
file(GLOB SHARED_TEST_HEADER_FILES "${CMAKE_CURRENT_SOURCE_DIR}/*.h " "${CMAKE_CURRENT_SOURCE_DIR}/*.hpp")
|
||||
|
||||
add_custom_target("test-extensions"
|
||||
SOURCES "${SHARED_TEST_HEADER_FILES}")
|
||||
|
@ -34,4 +34,4 @@ add_custom_target("all-tests"
|
|||
set_target_properties("all-tests" PROPERTIES FOLDER "hidden/test-targets")
|
||||
set_target_properties("all-tests" PROPERTIES
|
||||
EXCLUDE_FROM_DEFAULT_BUILD TRUE
|
||||
EXCLUDE_FROM_ALL TRUE)
|
||||
EXCLUDE_FROM_ALL TRUE)
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
inline float getErrorDifference(const glm::vec3& a, const glm::vec3& b) {
|
||||
return glm::distance(a, b);
|
||||
}
|
||||
|
||||
inline QTextStream& operator<<(QTextStream& stream, const glm::vec3& v) {
|
||||
return stream << "glm::vec3 { " << v.x << ", " << v.y << ", " << v.z << " }";
|
||||
}
|
|
@ -15,6 +15,8 @@
|
|||
#include <QtTest/QtTest>
|
||||
#include <functional>
|
||||
|
||||
#include "GLMTestUtils.h"
|
||||
|
||||
// Implements several extensions to QtTest.
|
||||
//
|
||||
// Problems with QtTest:
|
||||
|
|
|
@ -17,7 +17,6 @@
|
|||
#include <NumericalConstants.h>
|
||||
|
||||
// Add additional qtest functionality (the include order is important!)
|
||||
#include "GLMTestUtils.h"
|
||||
#include "../QTestExtensions.h"
|
||||
|
||||
// Constants
|
||||
|
|
|
@ -16,7 +16,6 @@
|
|||
|
||||
// Add additional qtest functionality (the include order is important!)
|
||||
#include "BulletTestUtils.h"
|
||||
#include "GLMTestUtils.h"
|
||||
#include "../QTestExtensions.h"
|
||||
|
||||
const btScalar acceptableRelativeError(1.0e-5f);
|
||||
|
|
Loading…
Reference in a new issue