Fix build on Windows
Add missing includes. Thanks to Alan Teeder
This commit is contained in:
parent
3c60bf6511
commit
f6ea868804
3 changed files with 13 additions and 0 deletions
|
@ -21,6 +21,11 @@
|
|||
#ifndef _INPUTVALUE_HXX
|
||||
#define _INPUTVALUE_HXX 1
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
# include <config.h>
|
||||
#endif
|
||||
|
||||
|
||||
#include <simgear/structure/SGExpression.hxx>
|
||||
|
||||
namespace FGXMLAutopilot {
|
||||
|
|
|
@ -23,6 +23,10 @@
|
|||
|
||||
#include "digitalcomponent.hxx"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
# include <config.h>
|
||||
#endif
|
||||
|
||||
namespace FGXMLAutopilot {
|
||||
|
||||
/**
|
||||
|
|
|
@ -1,6 +1,10 @@
|
|||
#ifndef FG_FLIGHT_PROPERTIES_HXX
|
||||
#define FG_FLIGHT_PROPERTIES_HXX
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
# include <config.h>
|
||||
#endif
|
||||
|
||||
#include <memory>
|
||||
#include <simgear/math/SGMathFwd.hxx> // for SGVec3d
|
||||
#include <simgear/math/SGMisc.hxx>
|
||||
|
|
Loading…
Reference in a new issue