链接问题

发布于 2024-11-19 06:02:02 字数 447 浏览 1 评论 0原文

我制作了一个自定义库并将其编译成 dll (qustom.dll)。

现在我想使用这个 dll 编译另一个项目。

我所做的是导入项目中的头文件并将此行添加到我的 .pro 文件中

LIBS += -lqustom

,但我得到“错误:找不到 -lqustom”我

也尝试过

LIBS += qustom.dll

LIBS += -libqustom.a

qustom.dll 在项目目录中

我也尝试过

OTHER_FILES += \
    qextserialport1.dll

但没有'也不工作

我在这里错过了什么吗?

I made a custom library and i compiled it into a dll (qustom.dll).

Now i want to compile another project using this dll.

What i did is to import the header files in the project and add this line in my .pro file

LIBS += -lqustom

but i get "error: cannot find -lqustom"

also i tried

LIBS += qustom.dll

and

LIBS += -libqustom.a

qustom.dll is in the project directory

Also i tried

OTHER_FILES += \
    qextserialport1.dll

but didn't work either

Am i missing something here?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

过去的过去 2024-11-26 06:02:02

也许缺少一条路? -L/path/to/dlls -ldllname

Qt 与 CMake 配合得很好。我使用它,我再也不会遇到像这样的依赖/路径头痛了。

Missing a path perhaps? -L/path/to/dlls -ldllname

Qt plays nicely with CMake. I use that and I never get dependency/path headaches like this any more.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文