]>
Commit | Line | Data |
---|---|---|
ff297bdd SC |
1 | #if __option (profile) |
2 | #error "profiling is not supported for debug targets" | |
3 | #else | |
da6a5fe2 SC |
4 | #ifdef __MACH__ |
5 | #pragma precompile_target "wxshlb_Mach++_d.mch" | |
6 | #elif __POWERPC__ | |
ff297bdd SC |
7 | #pragma precompile_target "wxshlb_Carbon++_d.mch" |
8 | #else | |
9 | #error "illegal processor for carbon" | |
10 | #endif | |
11 | ||
12 | #endif | |
13 | ||
14 | #pragma once on | |
15 | #define WXMAKINGDLL | |
16 | #define WX_PRECOMP | |
17 | #define __WXDEBUG__ 1 | |
18 | #define wxUSE_GUI 1 | |
19 | #define TARGET_CARBON 1 | |
20 | #define OLDP2C 1 | |
da6a5fe2 SC |
21 | #ifdef __MACH__ |
22 | #define __DARWIN__ | |
23 | #define __CF_USE_FRAMEWORK_INCLUDES__ | |
24 | #define __NOEXTENSIONS__ | |
25 | #define __UNIX__ | |
26 | #define __UNIX_LIKE__ | |
27 | #define HAVE_USLEEP 1 | |
28 | #define HAVE_FCNTL 1 | |
29 | #define HAVE_UNAME 1 | |
30 | #endif | |
ff297bdd SC |
31 | |
32 | #include "wx/wx_cw_cm.h" | |
33 | #ifdef WX_PRECOMP | |
34 | #include "wx/wxprec.h" | |
35 | #endif |