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-07-10 14:15:17 +00:00
|
|
|
// compatibility code, to be removed asap:
|
|
|
|
|
1998-08-15 00:23:28 +00:00
|
|
|
#if !defined(__WXMSW__) && !defined(__WXGTK__) && !defined(__WXMOTIF__) && !defined(__WXQT__) && !defined(__WXSTUBS__) && !defined(__WXMAC__)
|
|
|
|
# error No __WXxxx__ define set! Please define one of __WXGTK__,__WXMSW__,__WXMOTIF__,__WXMAC__,__WXQT__,__WXSTUBS__
|
1998-07-10 14:15:17 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if 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"
|
|
|
|
#elif defined(__WXSTUBS__)
|
|
|
|
#include "wx/stubs/setup.h"
|
|
|
|
#elif defined(__WXGTK__)
|
1998-08-06 16:18:34 +00:00
|
|
|
#include "wx/../../install/unix/setup/setup.h"
|
1998-05-20 14:01:55 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
1998-08-15 00:23:28 +00:00
|
|
|
// _WX_SETUP_H_BASE_
|