gpt4 book ai didi

c++ - Qt 4.8 与 Visual Studio 2010 的链接错误

转载 作者:行者123 更新时间:2023-11-28 05:21:10 26 4
gpt4 key购买 nike

我在尝试编译“hello world”Qt 程序时收到链接错误。

错误 1 ​​错误 LNK2001:未解析的外部符号“__declspec(dllimport) protected: virtual void __thiscall QObject::disconnectNotify(char const *)” (__imp_?disconnectNotify@QObject@@MAEXPBD@Z) C:\Users\Matthew\documents\visual studio 2010\Projects\FBIDecryptor\FBIDecryptor\main.obj FBIDecryptor

我想我缺少库输入,但我不知道是哪个库。

这是我要执行的代码:

int main(int argc, char* argv[])
{
QApplication app(argc, argv);
QLabel *label = new QLabel("Hello Qt");
label->show();

return app.exec();
}

最佳答案

您缺少对 QtCore、QtWidget 和其他核心库模块的引用。将 Qt4.8/bin 路径添加到环境变量应该可以解决这个问题。

找到有用的设置指南 here

关于c++ - Qt 4.8 与 Visual Studio 2010 的链接错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41474468/

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