链接问题
我制作了一个自定义库并将其编译成 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许缺少一条路?
-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.