mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 05:40:54 -06:00
Fix all defines on Windows
This commit is contained in:
@@ -1,12 +1,32 @@
|
||||
#ifdef WIN32
|
||||
|
||||
#define __WIN32
|
||||
#define _WINDOWS
|
||||
#define __WINDOWS__
|
||||
#define __WXMSW__
|
||||
#define __WIN32__
|
||||
#define WINVER 0x0400
|
||||
#define STRICT
|
||||
#ifndef __WIN32
|
||||
# define __WIN32
|
||||
#endif
|
||||
|
||||
#ifndef _WINDOWS
|
||||
# define _WINDOWS
|
||||
#endif
|
||||
|
||||
#ifndef __WINDOWS__
|
||||
# define __WINDOWS__
|
||||
#endif
|
||||
|
||||
#ifndef __WXMSW__
|
||||
# define __WXMSW__
|
||||
#endif
|
||||
|
||||
#ifndef __WIN32__
|
||||
# define __WIN32__
|
||||
#endif
|
||||
|
||||
#ifndef WINVER
|
||||
# define WINVER 0x0400
|
||||
#endif
|
||||
|
||||
#ifndef STRICT
|
||||
# define STRICT
|
||||
#endif
|
||||
|
||||
|
||||
#include "wx/defs.h"
|
||||
|
||||
Reference in New Issue
Block a user