]>
Commit | Line | Data |
---|---|---|
c801d85f | 1 | |
34138703 JS |
2 | #ifndef _WX_SETUP_H_BASE_ |
3 | #define _WX_SETUP_H_BASE_ | |
c801d85f | 4 | |
c67daf87 | 5 | /* compatibility code, to be removed asap: */ |
2049ba38 | 6 | |
34138703 JS |
7 | #if !defined(__WXMSW__) && !defined(__WXGTK__) && !defined(__WXMOTIF__) && !defined(__WXQT__) && !defined(__WXSTUBS__) && !defined(__WXMAC__) |
8 | # error No __WXxxx__ define set! Please define one of __WXGTK__,__WXMSW__,__WXMOTIF__,__WXMAC__,__WXQT__,__WXSTUBS__ | |
2049ba38 KB |
9 | #endif |
10 | ||
11 | #if defined(__WXMSW__) | |
c801d85f | 12 | #include "wx/msw/setup.h" |
34138703 JS |
13 | #elif defined(__WXMAC__) |
14 | #include "wx/mac/setup.h" | |
15 | #elif defined(__WXQT__) | |
16 | #include "wx/qt/setup.h" | |
17 | #elif defined(__WXMOTIF__) | |
18 | #include "wx/motif/setup.h" | |
19 | #elif defined(__WXSTUBS__) | |
20 | #include "wx/stubs/setup.h" | |
21 | #elif defined(__WXGTK__) | |
c98f0421 | 22 | #include "wx/gtk/setup.h" |
c801d85f KB |
23 | #endif |
24 | ||
25 | #endif | |
c67daf87 | 26 | /* _WX_SETUP_H_BASE_ */ |