QString program = "./path/to/Qt/examples/widgets/analogclock";
讓客戶滿意是我們工作的目標(biāo),不斷超越客戶的期望值來(lái)自于我們對(duì)這個(gè)行業(yè)的熱愛。我們立志把好的技術(shù)通過(guò)有效、簡(jiǎn)單的方式提供給客戶,將通過(guò)不懈努力成為客戶在信息化領(lǐng)域值得信任、有價(jià)值的長(zhǎng)期合作伙伴,公司提供的服務(wù)項(xiàng)目有:申請(qǐng)域名、虛擬空間、營(yíng)銷軟件、網(wǎng)站建設(shè)、榆陽(yáng)網(wǎng)站維護(hù)、網(wǎng)站推廣。
QStringList arguments;
arguments "-style" "motif";
QProcess *myProcess = new QProcess(parent);
myProcess-start(program, arguments);
有個(gè)這類?QProcess?
QProcess?p(0);
QString?command?=?"";
QStringList?args;
QString?strTemp?=?"";
QStringList?tmpList;
/**
*?調(diào)用?hostname?命令?獲取機(jī)器名
================================================================?*/
QString?hostname?=?"";
command?=?"hostname";
args.clear();
p.start(?command,args?);
p.waitForFinished();
strTemp?=?QString::fromLocal8Bit(?p.readAllStandardOutput()?);
hostname?=?strTemp.replace(?"\n","").trimmed();
qDebug()"hostname:"?hostname;
1 需要保證linux下要安裝了qt環(huán)境 2 進(jìn)入你的程序目錄,運(yùn)行 /usr/local/qt_install/bin/qmake xxxx.pro。 其中/usr/local/qt_install是qt安裝目錄. xxxx.pro是你應(yīng)程程序中的pro文件 3 執(zhí)行make 4 運(yùn)行生成的bin文件
1、在Linux下的命令行編輯程序:
[root@localhost root]# mkdir hello
//mkdir命令創(chuàng)建一個(gè)hello目錄
[root@localhost root]# cd hello
//cd命令切換到剛才創(chuàng)建的hello目錄
[root@localhost hello]# vi main.cpp
//在hello目錄中用vi創(chuàng)建一個(gè)main.cpp文件 將下面的代碼輸入到main.cpp文件中
#include QApplication
#include QLabel
int main(int argc,char *argv[])
{
QApplication app(argc,argv);
QLabel *label = new QLabel(“Hello Qt”);
Label-show();
return app.exec();
}
2、然后在命令行編譯程序:
[root@localhost hello]# qmake –project
//執(zhí)行qmake –project,因?yàn)槟夸浭莌ello,因此在hello目錄下生成一個(gè)與平臺(tái)無(wú)關(guān)的項(xiàng)目文件hello.pro,
[root@localhost hello]# qmake hello.pro
//執(zhí)行qmake hello.pro項(xiàng)目文件后,在hello目錄下生成一個(gè)與平臺(tái)有關(guān)的Makefile文件。
[root@localhost hello]# make
//執(zhí)行make進(jìn)行編譯源代碼,并生成main.o目標(biāo)文件及hello執(zhí)行文件。
[root@localhost hello]# ./hello
//執(zhí)行hello,就會(huì)彈出Hello Qt窗口,到此說(shuō)明成功了。
修改$QTDIR/mkspecs目錄下的符號(hào)鏈接default.將其指向linux-g++
$QTDIR是路徑,具體要看你把QT裝到什么地方和QT本身的版本,一般是/usr/lib[64]/qt4
修改default符號(hào)鏈接的作用是讓qmake在生成Makefile的時(shí)候?qū)akefile文件中的編譯器變量$CC與$CXX賦值成gcc和g++
圖形界面下,直接下載qtcreate,libqt4-dev,qt5defaule-dev 第一個(gè)是編輯軟件,后兩個(gè)是庫(kù),如需其他另外找。命令行模式的話,不知道怎么在沒(méi)有圖形界面下運(yùn)行對(duì)話框的程序,命令行模式運(yùn)行qt命令行格式的,直接qmake,make。就可以了。里面那個(gè)沒(méi)有后綴的就是運(yùn)行程序了,./程序名 運(yùn)行 不行就加權(quán)限 chmod +x ***.
網(wǎng)站名稱:關(guān)于linuxqt命令行的信息
URL網(wǎng)址:http://jinyejixie.com/article6/dodopog.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供App開發(fā)、手機(jī)網(wǎng)站建設(shè)、定制開發(fā)、網(wǎng)頁(yè)設(shè)計(jì)公司、做網(wǎng)站、網(wǎng)站建設(shè)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)