使用 cmake 将目标文件链接到 lib.xxxx.a 文件
我有一个要打包到库中的目标文件列表。 我该怎么做?我想我可以使用 ADD_LIBRARY
I've got a list of object files that I want to package in a library.
How do I do this? I thought I could use ADD_LIBRARY
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
add_library
是正确的答案。要创建静态库,您需要执行以下操作:add_library
is the correct answer. To make a static library, you want to do something like this:静态库变得有点过时了,但“ar”是您正在寻找的命令。
Static libraries are becoming a bit obsolete, but "ar" is the command you are looking for.