} } }

    command line compile qt program

    添加时间:2013-5-23 点击量:
    1) linux version:
    1. create cpp file, ex: test.cpp
    &#160; #include <QtGui>
    &#160; int main(int argc, char argv[])
    &#160; {
    &#160;&#160;&#160;&#160;&#160; QApplication app(argc, argv);
    &#160;&#160;&#160;&#160;&#160; QLabel label = new QLabel("Linux is wonderful"0);
    &#160;&#160;&#160;&#160;&#160; app.setMainWidget(label);&#160;&#160;&#160;
    &#160;&#160;&#160;&#160;&#160; label->show();
    &#160;&#160;&#160;&#160; return app.exec();
    &#160; }
    2. use qmake:
    qmake -project
    &#160;
    3. use make
    make
    &#160;
    4. run programe
    ./test
    文艺不是炫耀,不是花哨空洞的文字堆砌,不是一张又一张的逆光照片,不是将旅行的意义转化为名牌包和明信片的物质展示;很多时候它甚至完全不美——它嘶吼、扭曲,它会痛苦地抽搐,它常常无言地沉默。——艾小柯《文艺是一种信仰》
    分享到: