You can define anything you want on the borland bcc32 compiler command line using the -D flag.

Example:

Source:

#ifdef __DEBUG__
// some code
#endif

You can compile it using -D__DEBUG__ to compile the conditionally defined code.