提问人:Clément 提问时间:11/26/2018 更新时间:4/12/2023 访问量:660
Qt项目不编译,未定义引用
Qt project doesn't compile, undefined reference to
问:
Main.cpp
#include <QApplication>
int main (int argc, char* argv[]) {
QApplication app(argc, argv);
return app.exec();
}
test.pro
SOURCES += \
main.cpp
greaterThan(QT_MAJOR_VERSION,4) : QT +=widgets
outputs :
由于“未定义的引用”,我无法编译我的项目,似乎我的编译器没有找到“QApplication”,但我不知道如何解决它。 我取消并重新安装了我的Qt,但它没有修复它。
答:
0赞
Shaiful Islam
4/12/2023
#1
检查编译器类型“MinGW 64 位”。
您可以更改类型:Projects->Build & Run 64 位或 32 位(目标设备)
友情链接:Qt Creator
评论
test.pro