| 1 | ///////////////////////////////////////////////////////////////////////////// |
| 2 | // Name: wx_cw_d.h |
| 3 | // Purpose: wxWidgets definitions for CodeWarrior builds (Debug) |
| 4 | // Author: Stefan Csomor |
| 5 | // Modified by: |
| 6 | // Created: 12/10/98 |
| 7 | // RCS-ID: $Id$ |
| 8 | // Copyright: (c) Stefan Csomor |
| 9 | // Licence: wxWindows licence |
| 10 | ///////////////////////////////////////////////////////////////////////////// |
| 11 | |
| 12 | #ifndef _WX_CW__ |
| 13 | #define _WX_CW__ |
| 14 | |
| 15 | #if __MWERKS__ >= 0x2400 && __MWERKS__ < 0x3200 |
| 16 | #pragma old_argmatch on |
| 17 | #endif |
| 18 | |
| 19 | #if __option(profile) |
| 20 | #error "profiling is not supported in debug versions" |
| 21 | #else |
| 22 | #ifdef __cplusplus |
| 23 | #if __POWERPC__ |
| 24 | #include <wx_PPC++_d.mch> |
| 25 | #elif __INTEL__ |
| 26 | #include <wx_x86++_d.mch> |
| 27 | #elif __CFM68K__ |
| 28 | #include <wx_cfm++_d.mch> |
| 29 | #else |
| 30 | #include <wx_68k++_d.mch> |
| 31 | #endif |
| 32 | #else |
| 33 | #if __POWERPC__ |
| 34 | #include <wx_PPC_d.mch> |
| 35 | #elif __INTEL__ |
| 36 | #include <wx_x86_d.mch> |
| 37 | #elif __CFM68K__ |
| 38 | #include <wx_cfm_d.mch> |
| 39 | #else |
| 40 | #include <wx_68k_d.mch> |
| 41 | #endif |
| 42 | #endif |
| 43 | #endif |
| 44 | |
| 45 | #endif |
| 46 | // _WX_CW__ |