Hi there !
I'm using Code::Blocks since few years and I like it ! But there is an option that I cannot use, and I don't know what is wrong in my use... #defines.
Look : I create a target named "debug", with DEBUG 1 in the #defines tab. Then, I write :
int main()
{
#ifdef DEBUG
cout << "debug" << endl;
#endif
/* ... */
return 0;
}
It should show "debug" in the console, but it doesn't... What's wrong ?
Thank you !
PS : I'm using GNU GCC compiler...