I was trying to set up two different type of code for my project.When I try to run the following code nothing is printed.I am using cmake and mingw.
#include <iostream>
int main(int, char**) {
#if DEBUG
std::cout<<"Hello from debug"<<std::endl;
#endif
#if RELEASE
std::cout<< "Hello from release"<<std::endl;
#endif
}