1999-10-18 15:14:52 +00:00
|
|
|
/*
|
|
|
|
* The main configuration file for wxWindows.
|
|
|
|
*
|
|
|
|
* NB: this file can be included in .c files, so it must be compileable by a C
|
|
|
|
* compiler - use #ifdef __cplusplus for C++ specific features and avoid
|
|
|
|
* using C++ style comments
|
|
|
|
*/
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1998-08-15 00:23:28 +00:00
|
|
|
#ifndef _WX_SETUP_H_BASE_
|
|
|
|
#define _WX_SETUP_H_BASE_
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1998-08-23 03:22:56 +00:00
|
|
|
/* compatibility code, to be removed asap: */
|
1998-07-10 14:15:17 +00:00
|
|
|
|
1999-07-28 03:38:12 +00:00
|
|
|
#if !defined(__WXMSW__) && !defined(__WXGTK__) && !defined(__WXMOTIF__) && !defined(__WXQT__) && !defined(__WXSTUBS__) && !defined(__WXMAC__) && !defined(__WXPM__)
|
1999-10-18 15:14:52 +00:00
|
|
|
#error No __WXxxx__ define set! Please define one of __WXGTK__,__WXMSW__,__WXMOTIF__,__WXMAC__,__WXQT__,__WXPM__,__WXSTUBS__
|
1998-07-10 14:15:17 +00:00
|
|
|
#endif
|
|
|
|
|
1999-11-12 11:28:38 +00:00
|
|
|
#ifdef __VMS
|
1999-11-25 13:41:50 +00:00
|
|
|
#include "wx_root:[wxwindows]setup.h"
|
1999-11-12 14:31:59 +00:00
|
|
|
#elif defined(__WXMSW__)
|
1998-05-20 14:01:55 +00:00
|
|
|
#include "wx/msw/setup.h"
|
1998-08-15 00:23:28 +00:00
|
|
|
#elif defined(__WXMAC__)
|
|
|
|
#include "wx/mac/setup.h"
|
|
|
|
#elif defined(__WXQT__)
|
|
|
|
#include "wx/qt/setup.h"
|
|
|
|
#elif defined(__WXMOTIF__)
|
|
|
|
#include "wx/motif/setup.h"
|
1999-07-28 03:38:12 +00:00
|
|
|
#elif defined(__WXPM__)
|
|
|
|
#include "wx/os2/setup.h"
|
1998-08-15 00:23:28 +00:00
|
|
|
#elif defined(__WXSTUBS__)
|
|
|
|
#include "wx/stubs/setup.h"
|
|
|
|
#elif defined(__WXGTK__)
|
1998-09-03 13:58:56 +00:00
|
|
|
#include "wx/gtk/setup.h"
|
1998-05-20 14:01:55 +00:00
|
|
|
#endif
|
|
|
|
|
1999-11-15 14:07:51 +00:00
|
|
|
#endif
|
1998-08-23 03:22:56 +00:00
|
|
|
/* _WX_SETUP_H_BASE_ */
|