Question
Trying to define a constant in compile time to be used by a configuration - not working
I created a configuration called "Release" and inside it I defined under C/C++ General --> Paths and Symbols a symbol following the advice from several "google" searches but when I try to use it inside a file like:
#[if defined(_RELEASE_MODE_)]
...some code
#endif
it failed in compilation time as the symbol was not recognized. Any hint?
