From 7c7f3d4fcdb04318ea79b943c2c00aa0dca8e5ef Mon Sep 17 00:00:00 2001 From: James Turner Date: Fri, 9 Sep 2011 11:48:11 +0100 Subject: [PATCH] Hopefully fix test compilation on MSVC 2008+CMake --- simgear/props/propertyObject_test.cxx | 3 +++ simgear/props/props_test.cxx | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/simgear/props/propertyObject_test.cxx b/simgear/props/propertyObject_test.cxx index b2c458ad..5bb4ae58 100644 --- a/simgear/props/propertyObject_test.cxx +++ b/simgear/props/propertyObject_test.cxx @@ -5,6 +5,9 @@ #include #include +// working around MSVC weirdness with props.hxx and SGMathFwd +#include + #include "propertyObject.hxx" #include diff --git a/simgear/props/props_test.cxx b/simgear/props/props_test.cxx index b3109821..cd54ec50 100644 --- a/simgear/props/props_test.cxx +++ b/simgear/props/props_test.cxx @@ -6,6 +6,10 @@ #include #include + +// working around MSVC weirdness with props.hxx and SGMathFwd +#include + #include "props.hxx" #include "props_io.hxx"