1
0
Fork 0

Keep MSVC happy with the Environment updates

This commit is contained in:
Torsten Dreyer 2010-09-11 20:32:37 +02:00
parent 5c6fe95259
commit 1a3eddbbcd
4 changed files with 39 additions and 1 deletions

View file

@ -721,6 +721,9 @@
<ClCompile Include="..\..\..\src\Environment\fgwind.cxx" />
<ClCompile Include="..\..\..\src\Environment\precipitation_mgr.cxx" />
<ClCompile Include="..\..\..\src\Environment\ridge_lift.cxx" />
<ClCompile Include="..\..\..\src\Environment\realwx_ctrl.cxx" />
<ClCompile Include="..\..\..\src\Environment\metarproperties.cxx" />
<ClCompile Include="..\..\..\src\Environment\metarairportfilter.cxx" />
<ClCompile Include="..\..\..\src\Model\acmodel.cxx" />
<ClCompile Include="..\..\..\src\Model\model_panel.cxx" />
<ClCompile Include="..\..\..\src\Model\modelmgr.cxx" />
@ -1289,6 +1292,9 @@
<ClInclude Include="..\..\..\src\Environment\fgwind.hxx" />
<ClInclude Include="..\..\..\src\Environment\precipitation_mgr.hxx" />
<ClInclude Include="..\..\..\src\Environment\ridge_lift.hxx" />
<ClCompile Include="..\..\..\src\Environment\realwx_ctrl.hxx" />
<ClCompile Include="..\..\..\src\Environment\metarproperties.hxx" />
<ClCompile Include="..\..\..\src\Environment\metarairportfilter.hxx" />
<ClInclude Include="..\..\..\src\Model\acmodel.hxx" />
<ClInclude Include="..\..\..\src\Model\model_panel.hxx" />
<ClInclude Include="..\..\..\src\Model\modelmgr.hxx" />
@ -1423,4 +1429,4 @@
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>
</Project>

View file

@ -4659,6 +4659,30 @@
RelativePath="..\..\..\src\Environment\ridge_lift.hxx"
>
</File>
<File
RelativePath="..\..\..\src\Environment\realwx_ctrl.cxx"
>
</File>
<File
RelativePath="..\..\..\src\Environment\realwx_ctrl.hxx"
>
</File>
<File
RelativePath="..\..\..\src\Environment\metarproperties.cxx"
>
</File>
<File
RelativePath="..\..\..\src\Environment\metarproperties.hxx"
>
</File>
<File
RelativePath="..\..\..\src\Environment\metarairportfilter.cxx"
>
</File>
<File
RelativePath="..\..\..\src\Environment\metarairportfilter.hxx"
>
</File>
</Filter>
<Filter
Name="Lib_Model"

View file

@ -19,6 +19,10 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
//
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include "metarairportfilter.hxx"
namespace Environment {

View file

@ -20,6 +20,10 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
//
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include "metarproperties.hxx"
#include "fgmetar.hxx"
#include "environment.hxx"