- fixed the build on windows

This commit is contained in:
Mark Vejvoda 2012-05-07 01:37:43 +00:00
parent 2fddf85486
commit ee6eed20a2
4 changed files with 16 additions and 0 deletions

View File

@ -406,6 +406,14 @@
RelativePath="..\..\source\glest_game\ai\influence_map.h"
>
</File>
<File
RelativePath="..\..\source\glest_game\ai\IntrHashSet.hpp"
>
</File>
<File
RelativePath="..\..\source\glest_game\ai\IntrHeapHash.hpp"
>
</File>
<File
RelativePath="..\..\source\glest_game\ai\node_pool.cpp"
>

View File

@ -272,6 +272,8 @@
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\..\source\glest_game\ai\fast_path_finder.h" />
<ClInclude Include="..\..\source\glest_game\ai\IntrHashSet.hpp" />
<ClInclude Include="..\..\source\glest_game\ai\IntrHeapHash.hpp" />
<ClInclude Include="..\..\source\glest_game\facilities\auto_test.h" />
<ClInclude Include="..\..\source\glest_game\facilities\components.h" />
<ClInclude Include="..\..\source\glest_game\facilities\game_util.h" />

View File

@ -12,7 +12,10 @@
#ifndef __INTRUSIVE_HASH_SET_HPP__
#define __INTRUSIVE_HASH_SET_HPP__
#ifndef WIN32
#include <inttypes.h>
#endif
#include <memory.h>
/*

View File

@ -12,7 +12,10 @@
#ifndef __INTRUSIVE_HEAP_HASH_SET_HPP__
#define __INTRUSIVE_HEAP_HASH_SET_HPP__
#ifndef WIN32
#include <inttypes.h>
#endif
#include <vector>
#include "IntrHashSet.hpp"