如何让 cmake 的 PKG_CHECK_MODULES 在 Windows 中找到我的 cairo 库
我正在尝试在 win32 盒子上构建 OpenSceneGraph 的 pdf 插件。该插件使用 cmake 的 PKG_CHECK_MODULES 宏来查找 cairo 和 poppler 库。我不知道如何安装它们以帮助它找到它们。
I'm trying to build OpenSceneGraph's pdf plugin on a win32 box. The plugin is using cmake's PKG_CHECK_MODULES macro to find cairo and poppler libraries. I don't know how to install these in such a way as to help it find them though.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有“特殊”的方式来安装它们。每当您安装(正确设计的)库时,它还包含一个 PACKAGENAME.pc 文件,该文件被复制到 pkg-config 可以找到它的目录中。
至少在 Linux 中会发生这种情况。我不知道pkg-config在win32下是否可以这样工作
你是否还安装了pkg-config以及poppler和cairo?
There is no "special" way to install them. Any time you install (a correctly designed) library it also contains a PACKAGENAME.pc file which is copied in a directory where pkg-config can find it.
At least this happens in Linux. I don't know if pkg-config would work like this under win32
Have you also installed pkg-config as well as poppler and cairo?