I am working with Linux and Qt. I want to compile certain code only if we are debugging. In Windows I am used to doing the following:
#ifdef _DEBUG
..code...
#endif
This however does not work. I am compiling the debug build and not the release build. What is the way to not compile certain pieces of code in release, but compile them when debug build?
#ifdef QT_DEBUG
..code…
#endif