qt+vc.net 如何Debug?
平台 是qt3.2.1 vs2003[7.1版]
执行的命令是
E:\test\QtTest
qmake -project
qmake QtTest.pro
qmake -t vcapp QtTest.pro
然后会生成QtTest.vcproj 用VS2003打开它会提示说是旧版本...
打开后
加个代码
#include <qapplication.h>
#include <qpushbutton.h>
int main( int argc, char **argv )
{
QApplication a( argc, argv );
QPushButton hello( "Hello world!", 0 );
hello.resize( 100, 30 );
a.setMainWidget( &hello );
hello.show();
return a.exec();
}
可以进行Release 但下拉框中 没有Debug 请问如何加上Debug?