1、打开环境变量设置窗口,编辑 PATH 变量,添加如下内容:
c:/Qt/2010.02.1/bin/;
c:/Qt/2010.02.1/qt/bin/;
c:/Qt/2010.02.1/mingw/bin/
2、打开环境变量设置窗口,添加环境变量QTDIR:
变量名:QTDIR
变量值:C:/Qt/2010.02.1/qt
3、打开环境变量设置窗口,添加环境变量QMAKESPEC:
变量名:QMAKESPEC
变量值:win32-g++
4、现在已经可以进行命令行模式的编译了,例如:
a、建立一个空文件夹 hello,然后在其中建立一个空文件 hello.cpp,编辑并保存此文件。
#include QApplication>
#include QPushButton>
int main(int argc,char* argv[])
{
QApplication app(argc,argv);
QPushButton * bt = new QPushButton("quit");
QObject::connect(bt,SIGNAL(clicked()),&app,SLOT(exit()));
bt->show();
return app.exec();
}
b、在hello目录下,命令行输入运行 qmake -project,生成 hello.pro
c、在hello目录下,命令行输入运行 qmake hello.pro,生成了 makefile
d、在hello目录下,命令行输入运行 mingw32-make,生成了 hello.exe(位于 Debug 目录下)
e、进入 Debug 目录,执行 hello.exe
打完收工!