]>
Commit | Line | Data |
---|---|---|
1 | #if __option (profile) | |
2 | #error "profiling is not supported for debug targets" | |
3 | #else | |
4 | #if __POWERPC__ | |
5 | #pragma precompile_target "wx_PPC_d.mch" | |
6 | #pragma once on | |
7 | #elif __INTEL__ | |
8 | #pragma precompile_target "wx_x86_d.mch" | |
9 | /* Do NOT use #pragma once on for Win32 */ | |
10 | #elif __CFM68K__ | |
11 | #pragma precompile_target "wx_cfm_d.mch" | |
12 | #pragma once on | |
13 | #else | |
14 | #pragma precompile_target "wx_68k_d.mch" | |
15 | #pragma once on | |
16 | #endif | |
17 | #endif | |
18 | ||
19 | #undef WX_PRECOMP | |
20 | #define __WXDEBUG__ 1 | |
21 | #define wxUSE_GUI 1 | |
22 | #define OLDP2C 1 | |
23 | #include "wx/wx_cw_cm.h" | |
24 | #ifdef __WXMSW__ | |
25 | #include <windows.h> | |
26 | #include "wx/msw/winundef.h" | |
27 | #endif |