当前位置: 代码迷 >> QT开发 >> 第一个Qt程序(看似PATH配置不正确)
  详细解决方案

第一个Qt程序(看似PATH配置不正确)

热度:109   发布时间:2016-04-25 03:23:50.0
第一个Qt程序(貌似PATH配置不正确)

      为了学习Qt编程,买了《C++ GUI Qt 4 编程(第二版)》这本书。目前看了一点点,就先简单的按照书中的代码来上机操作。

wahaha@ubuntu-K55VD:~$ cd Zhuo_Mian/wahaha@ubuntu-K55VD:~/Zhuo_Mian$ mkdir test_1wahaha@ubuntu-K55VD:~/Zhuo_Mian$ cd test_1/wahaha@ubuntu-K55VD:~/Zhuo_Mian/test_1$ nano hello.cppwahaha@ubuntu-K55VD:~/Zhuo_Mian/test_1$ lshello.cppwahaha@ubuntu-K55VD:~/Zhuo_Mian/test_1$ PATH=$PATH:/home/wahaha/Qt5.2.0/5.2.0/gcc_64/binwahaha@ubuntu-K55VD:~/Zhuo_Mian/test_1$ qmake -projectwahaha@ubuntu-K55VD:~/Zhuo_Mian/test_1$ lshello.cpp  test_1.prowahaha@ubuntu-K55VD:~/Zhuo_Mian/test_1$ qmake test_1.pro wahaha@ubuntu-K55VD:~/Zhuo_Mian/test_1$ lshello.cpp  Makefile  test_1.prowahaha@ubuntu-K55VD:~/Zhuo_Mian/test_1$ makeg++ -c -pipe -O2 -Wall -W -D_REENTRANT -fPIE -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -I../../Qt5.2.0/5.2.0/gcc_64/mkspecs/linux-g++ -I. -I. -I../../Qt5.2.0/5.2.0/gcc_64/include -I../../Qt5.2.0/5.2.0/gcc_64/include/QtGui -I../../Qt5.2.0/5.2.0/gcc_64/include/QtCore -I. -o hello.o hello.cpphello.cpp:1:24: 致命错误: QApplication:没有那个文件或目录编译中断。make: *** [hello.o] 错误 1wahaha@ubuntu-K55VD:~/Zhuo_Mian/test_1$

其中,hello.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();}
那个PATH的设置是临时有效的,我的Qt是从官网下载软件安装的,其安装文件夹在我目前用户的主目录下。

  相关解决方案