gpt4 book ai didi

qt - Qt和LNK1104无法打开文件

转载 作者:行者123 更新时间:2023-12-04 13:19:16 31 4
gpt4 key购买 nike

我正在尝试使用Qt 5.0.2(适用于Windows 64位)(VS 2012,500 MB)(信息)来完成“hello world”教程。
但是,当我按“运行项目”时,我有一个LNK1104:无法打开文件“debug/Hello.exe”错误。但是,我看到此文件是在项目文件夹“F:\QT\Hello\build-Hello-Desktop_Qt_5_0_2_MSVC2012_64bit-Debug”下创建的。先感谢您

Main.cpp

#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();
}

你好
TEMPLATE = app
TARGET = Hello

QT = core gui
QT += widgets

SOURCES += \
main.cpp

最佳答案

造成问题的最可能原因:您的程序的.exe文件仍在运行。检查任务管理器,从任务管理器结束此过程,然后再次尝试构建它,它肯定会运行。

关于qt - Qt和LNK1104无法打开文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16874828/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com