我想在Qt Creater中使用_Debug Constant。但是不要得到任何输出。好像Qt Creater在调试时没有设置_Debug Constant。
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
#ifdef _debug
qDebug("Test");
qDebug() << "Test";
argv* = new char[2]{ "c:\injection.dll", "5" };
#endif>
}
答案 0 :(得分:0)
我不确定Qt默认是否定义了这个,但无论如何,你可以自己将它添加到你的.pro
文件中:
debug:DEFINES += _debug