Qt Creator调试常量

时间:2011-08-03 14:51:50

标签: c++ qt qt-creator

我想在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>
}

1 个答案:

答案 0 :(得分:0)

我不确定Qt默认是否定义了这个,但无论如何,你可以自己将它添加到你的.pro文件中:

debug:DEFINES += _debug