我将 Qt5 与 Qt Creator 一起使用。
如果我从 Qt Creator 本身启动它,我的程序工作得很好,但是如果我尝试.exe
从debug
或release
文件夹运行文件,我只会得到一个错误:
The program can't start because Qt5Widgets.dll is missing from your computer.
Try reinstalling the program to fix this problem.
我是 Qt 的新手,不知道是什么原因造成的,没有从谷歌找到任何体面的结果。我已经尝试重新安装 Qt5(包括创建者),但没有帮助。
我的.proj
文件如下所示:
TEMPLATE = app
TARGET = test
QT += \
core \
gui \
widgets \
SOURCES += \
main.cpp
我的main.cpp
样子是这样的:
#include <QApplication>
#include <QWidget>
int main(int argc, char **argv)
{
QApplication app(argc, argv);
QWidget window();
window.show();
return app.exec();
}
这就是我拥有的所有代码。