Linux下如何运行一个QT的程序

程序如下:

#include <QApplication>
#include <QDialog>
#include <QLabel>
#include <QTextCodec>
int main(int argc,char *argv[])
{
    QApplication a(argc,argv);
    QTextCodec::setCodecForTr(QTextCodec::codecForLocale());
    QDialog w;
    w.resize(400,300);
    QLabel label(&w);
    label.move(120,120);
    label.setText(QObject::tr("Hello World!你好Qt!"));
    w.show();
    return a.exec();
}

在命令提示符下输入命令:

qmake -project

qmake

make

你可能感兴趣的:(Linux下如何运行一个QT的程序)