Basically in a simple library I made I am going to have it output to the debug console if "DEBUG" has been defined. ex:
if(DEBUG)
cout << "debug message << endl;
I went to the compiler settings tab for the debug build and in the #defines, sub-menu I entered "DEBUG" (without the quotes). The code executes fine if I'm on a debug build, but when I go to the release build it gives me the "DEBUG not defined" error. How am I able to bring the DEBUG value in the scope of a release build but have it execute as false?