mirror of
https://github.com/HandmadeMath/HandmadeMath.git
synced 2025-09-06 10:18:18 +00:00

* Try running tests on all three operating systems * Try adding an MSVC build * Make tests work on Windows * Try reconfiguring Travis for this * Maybe it's because we're in git bash * Try explicitly doing something else for travis * Remove a part I think is unnecessary * Run the test EXEs as they compile
21 lines
622 B
C
21 lines
622 B
C
#include <float.h>
|
|
|
|
#define HANDMADE_TEST_IMPLEMENTATION
|
|
#include "HandmadeTest.h"
|
|
|
|
#undef COVERAGE // Make sure we don't double-define initializers from the header part
|
|
#include "../HandmadeMath.h"
|
|
|
|
#include "categories/ScalarMath.h"
|
|
#include "categories/Initialization.h"
|
|
#include "categories/VectorOps.h"
|
|
#include "categories/QuaternionOps.h"
|
|
#include "categories/Addition.h"
|
|
#include "categories/Subtraction.h"
|
|
#include "categories/Multiplication.h"
|
|
#include "categories/Division.h"
|
|
#include "categories/Equality.h"
|
|
#include "categories/Projection.h"
|
|
#include "categories/Transformation.h"
|
|
#include "categories/SSE.h"
|