Fix NeL Tools compile under MinGW

This commit is contained in:
kaetemi 2014-06-18 21:05:39 +02:00
parent a4c86ddf20
commit 2c6b53c53e
3 changed files with 10 additions and 4 deletions

View file

@ -38,7 +38,9 @@
#include "nel/3d/event_mouse_listener.h" #include "nel/3d/event_mouse_listener.h"
#ifdef NL_OS_WINDOWS #ifdef NL_OS_WINDOWS
# ifndef NL_COMP_MINGW
# define NOMINMAX # define NOMINMAX
# endif
# include <windows.h> # include <windows.h>
#endif // NL_OS_WINDOWS #endif // NL_OS_WINDOWS

View file

@ -20,7 +20,9 @@
#include "shapes_exporter.h" #include "shapes_exporter.h"
#ifdef NL_OS_WINDOWS #ifdef NL_OS_WINDOWS
# ifndef NL_COMP_MINGW
# define NOMINMAX # define NOMINMAX
# endif
# include <windows.h> # include <windows.h>
#endif // NL_OS_WINDOWS #endif // NL_OS_WINDOWS

View file

@ -41,8 +41,10 @@
#include <nel/3d/height_map.h> #include <nel/3d/height_map.h>
#ifdef NL_OS_WINDOWS #ifdef NL_OS_WINDOWS
#define NOMINMAX # ifndef NL_COMP_MINGW
#include <windows.h> # define NOMINMAX
# endif
# include <windows.h>
#endif // NL_OS_WINDOWS #endif // NL_OS_WINDOWS
using namespace std; using namespace std;