2011-08-03 52 views
0

我想在Qt Creater中使用_Debug Constant。但是沒有得到任何輸出。看起來像Qt Creater在調試時不會設置_Debug常量。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

我不知道,如果Qt的默認定義了這一點,但在任何情況下,你可以自己把它添加到您的.pro文件:

debug:DEFINES += _debug