Qt5.x解决报错main.cpp:1:10: fatal error: QApplication: No such file or directory问题
Qt5.x解决报错main.cpp:1:10: fatal error: QApplication: No such file or directory问题。
·
问题描述
创建Qt5项目完成后,编译出现如下错误:
$ qmake -project
$ ls
Image.pro main.cpp
$ qmake -makefile
$ make
g++ -c -pipe -O2 -Wall -Wextra -D_REENTRANT -fPIC -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -I. -I. -I../../../Qt/5.15.0/gcc_64/include -I../../../Qt/5.15.0/gcc_64/include/QtGui -I../../../Qt/5.15.0/gcc_64/include/QtCore -I. -isystem /usr/include/libdrm -I../../../Qt/5.15.0/gcc_64/mkspecs/linux-g++ -o main.o main.cpp
main.cpp:1:10: fatal error: QApplication: No such file or directory
#include <QApplication>
^~~~~~~~~~~~~~
compilation terminated.
Makefile:748: recipe for target 'main.o' failed
make: *** [main.o] Error 1
定位问题
此错误是由于从Qt版本5开始,所有native GUI功能都已从core模块移至单独的模块,即widgets
模块。应该向qmake声明应用程序依赖于该模块。
解决方法
修改项目文件.pro文件,例如创建Image项目,则为Image.pro。
$ vim Image.pro
添加greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
修改完成后Image.pro如下(不考虑注释行):
TEMPLATE = app
TARGET = ImageViewer
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
INCLUDEPATH += .
SOURCES += main.cpp
再次编译项目即可。
$ qmake -makefile
$ make
$ ls
Image Image.pro main.cpp main.o Makefile
$ ./Image
简单测试,成功执行:
The end
Enjoy coding.
更多推荐
已为社区贡献3条内容
所有评论(0)