]>
Commit | Line | Data |
---|---|---|
f7c1de78 SC |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx_cw.h | |
77ffb593 | 3 | // Purpose: wxWidgets definitions for CodeWarrior builds |
f7c1de78 SC |
4 | // Author: Stefan Csomor |
5 | // Modified by: | |
6 | // Created: 12/10/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Stefan Csomor | |
cab1a605 | 9 | // Licence: wxWindows licence |
f7c1de78 SC |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_CW__ | |
13 | #define _WX_CW__ | |
14 | ||
15 | #if __MWERKS__ >= 0x2400 | |
16 | #pragma old_argmatch on | |
17 | #endif | |
18 | ||
19 | #if __option(profile) | |
20 | #ifdef __cplusplus | |
cab1a605 WS |
21 | #if __POWERPC__ |
22 | #include <wxshlb_PPC++_prof.mch> | |
23 | #elif __INTEL__ | |
24 | #include <wxshlb_x86++_prof.mch> | |
25 | #elif __CFM68K__ | |
26 | #include <wxshlb_cfm++_prof.mch> | |
27 | #else | |
28 | #include <wxshlb_68k++_prof.mch> | |
29 | #endif | |
f7c1de78 | 30 | #else |
cab1a605 WS |
31 | #if __POWERPC__ |
32 | #include <wxshlb_PPC_prof.mch> | |
33 | #elif __INTEL__ | |
34 | #include <wxshlb_x86_prof.mch> | |
35 | #elif __CFM68K__ | |
36 | #include <wxshlb_cfm_prof.mch> | |
37 | #else | |
38 | #include <wxshlb_68k_prof.mch> | |
39 | #endif | |
f7c1de78 SC |
40 | #endif |
41 | #else | |
42 | #ifdef __cplusplus | |
cab1a605 WS |
43 | #if __POWERPC__ |
44 | #include <wxshlb_PPC++.mch> | |
45 | #elif __INTEL__ | |
46 | #include <wxshlb_x86++.mch> | |
47 | #elif __CFM68K__ | |
48 | #include <wxshlb_cfm++.mch> | |
49 | #else | |
50 | #include <wxshlb_68k++.mch> | |
51 | #endif | |
f7c1de78 | 52 | #else |
cab1a605 WS |
53 | #if __POWERPC__ |
54 | #include <wxshlb_PPC.mch> | |
55 | #elif __INTEL__ | |
56 | #include <wxshlb_x86.mch> | |
57 | #elif __CFM68K__ | |
58 | #include <wxshlb_cfm.mch> | |
59 | #else | |
60 | #include <wxshlb_68k.mch> | |
61 | #endif | |
f7c1de78 SC |
62 | #endif |
63 | #endif | |
64 | #endif | |
65 | // _WX_CW__ |