mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-07-19 19:07:06 +00:00
aa118403bb
ScEd: Compilation fixes. Atlas: Screen-space to world-space conversion when editing terrain. Wireframe option. Minor wxWidgets 2.6.1 fixes. AoE3Ed. This was SVN commit r2698.
19 lines
282 B
C++
19 lines
282 B
C++
// Precompiled headers:
|
|
|
|
#ifdef _WIN32
|
|
# define HAVE_PCH
|
|
#endif
|
|
|
|
#ifdef HAVE_PCH
|
|
|
|
// Exclude rarely-used stuff from Windows headers
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
#include <set>
|
|
#include <stack>
|
|
#include <map>
|
|
|
|
#endif // HAVE_PCH
|