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>
}