Is there any constants defined when a specific build target is chosen? I mean does CB define anything automatically? I'm trying to compile build target specific code like below:
#if defined DEBUG (can be something CB defines)
do this;
#elif defined RELEASE (same here)
do that;
I know I can define them manually but I want to use what CB defines if there is any. Thnx...