MesonBuild:如何定义`pkg-config`找不到的库的依赖?

前端之家收集整理的这篇文章主要介绍了MesonBuild:如何定义`pkg-config`找不到的库的依赖?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的项目(在C中)在构建时具有第三方依赖.但是,默认情况下,第三方库安装到/ opt /而不是/ lib,我在pkg-config中找不到它.从mesonbuild的文档中,我应该使用declare_dependency,我没有其源代码将其视为我的子项目.如果我使用dependency()来定义它,我找不到正确的参数来定义自定义位置.

如何声明非标准第三方库的依赖关系?

herehere所述

The main use case for this [declare_dependency()] is in subprojects.

[dependency()] finds an external dependency … with pkg-config [or] library-specific fallback detection logic …

相反,您可以使用编译器提供的find_library()
对象和include_directories(). find_library()返回一个对象,就像declare_dependency()返回一样. include_directories()返回包含目录的opaque对象.

假设您使用的是C编译器,并且您的第三方库及其头文件是/opt/hello/libhello.so和/opt/hello/hello.h,您可以执行以下操作:

project('myproj','c')

cc = meson.get_compiler('c')
lib_hello = cc.find_library('hello',dirs : ['/opt/hello'])
inc_hello = include_directories('/opt/hello')
exec = executable('app','main.c',dependencies : [lib_hello],include_directories : inc_hello)
原文链接:https://www.f2er.com/javaschema/281270.html

猜你在找的设计模式相关文章