我正在尝试使用 Qt 5.0.2 for Windows 64 位(VS 2012,500 MB)(信息)完成“hello world”教程。但是,当我按下运行项目时,我有一个 LNK1104: cannot open file 'debug/Hello.exe' 错误。但是我看到这个文件是在项目文件夹“F:\QT\Hello\build-Hello-Desktop_Qt_5_0_2_MSVC2012_64bit-Debug”下创建的。先感谢您
主文件
#include <QApplication>
#include <QPushButton>
int main(int argc, char **argv)
{
QApplication app (argc, argv);
QPushButton button;
button.setText("Hello world !");
button.setToolTip("heheheheheheheh");
button.show();
return app.exec();
}
你好.pro
TEMPLATE = app
TARGET = Hello
QT = core gui
QT += widgets
SOURCES += \
main.cpp