dolphin/Externals/wxWidgets3/wx/setup.h
Florent Castelli 5984ca26f3 wx: Move platform defines to wx setup header
Usually, this is passed as a preprocessor definition, but this is error
prone and just complicating the compiler invocation for no good reason.
2017-02-06 04:27:06 +01:00

12 lines
215 B
C

#ifdef __APPLE__
#define __WXMAC__
#define __WXOSX__
#define __WXOSX_COCOA__
#include "wx/wxcocoa.h"
#elif defined _WIN32
#define __WXMSW__
#include "wx/wxmsw.h"
#else
#define __WXGTK__
#include "wx/wxgtk.h"
#endif