by "Paul" <cgvbg@[EMAIL PROTECTED]
>
Nov 1, 2005 at 04:53 PM
I've found the answer myself. In case anyone else needs to know:
I use the __ide_target Metrowerks prefefined symbol to check which target
is being build and define values based on the target. Example:
#if __ide_target("Release")
#define _RELEASE
#endif
#if __ide_target("Debug")
#define _DEBUG
#endif