You probably have to put in some conditionally compiled stuff that checks for _DEBUG, and adds a string to your /? or Info output. From the helpfile:
<snip>
_DEBUG Defined when in Full Debug mode; not defined in Release mode (options on the Compiler page of the Project |Options). Default is defined.
</snip>
and simplified code could look like this:
Code:
... "version blabla"
#if defined(_DEBUG) // could also be #ifdef _DEBUG
" -Debug"
#endif
"\0";
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.