1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-09-02 08:39:49 +02:00
openrw/tests/main.cpp

9 lines
235 B
C++

#define BOOST_TEST_MODULE openrw
#include <boost/test/unit_test.hpp>
#include "test_Globals.hpp"
std::ostream& operator<<(std::ostream& stream, const glm::vec3& v) {
stream << v.x << " " << v.y << " " << v.z;
return stream;
}