Qt 5.5 'QApplication'file not found 解决办法

学习《QT creator 快速入门第三版 霍亚飞》中一文中,手写helloworld时,再写前三行头文件时,就报错 对应的文件么有找到

#include 
#include 
#include 

最后发现,文章中及Qt 5.5 'QApplication’file not found 解决办法
都有再pro文件中添加的greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
结果我没有看到,添加后发现,就没有这个问题拉。

最后.pro的文件为:

greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
SOURCES += \
    main.cpp

你可能感兴趣的:(QT)