]>
Commit | Line | Data |
---|---|---|
1 | /* | |
2 | * The main configuration file for wxWindows. | |
3 | * | |
4 | * NB: this file can be included in .c files, so it must be compileable by a C | |
5 | * compiler - use #ifdef __cplusplus for C++ specific features and avoid | |
6 | * using C++ style comments | |
7 | */ | |
8 | ||
9 | #ifndef _WX_SETUP_H_BASE_ | |
10 | #define _WX_SETUP_H_BASE_ | |
11 | ||
12 | /* compatibility code, to be removed asap: */ | |
13 | ||
14 | #if !defined(__WXBASE__) && !defined(__WXMSW__) && !defined(__WXGTK__) && !defined(__WXMOTIF__) && !defined(__WXQT__) && !defined(__WXSTUBS__) && !defined(__WXMAC__) && !defined(__WXPM__) | |
15 | #error No __WXxxx__ define set! Please define one of __WXBASE__,__WXGTK__,__WXMSW__,__WXMOTIF__,__WXMAC__,__WXQT__,__WXPM__,__WXSTUBS__ | |
16 | #endif | |
17 | ||
18 | #ifdef __WXBASE__ | |
19 | #include "wx/base/setup.h" | |
20 | #elif defined(__VMS) | |
21 | #include "wx_root:[wxwindows]setup.h" | |
22 | #elif defined(__WXMSW__) | |
23 | #include "wx/msw/setup.h" | |
24 | #elif defined(__WXMAC__) | |
25 | #include "wx/mac/setup.h" | |
26 | #elif defined(__WXQT__) | |
27 | #include "wx/qt/setup.h" | |
28 | #elif defined(__WXMOTIF__) | |
29 | #include "wx/motif/setup.h" | |
30 | #elif defined(__WXPM__) | |
31 | #include "wx/os2/setup.h" | |
32 | #elif defined(__WXSTUBS__) | |
33 | #include "wx/stubs/setup.h" | |
34 | #elif defined(__WXGTK__) | |
35 | #include "wx/gtk/setup.h" | |
36 | #endif | |
37 | ||
38 | #endif | |
39 | /* _WX_SETUP_H_BASE_ */ |