我的项目(在C中)在构建时具有第三方依赖.但是,默认情况下,第三方库安装到/ opt /而不是/ lib,我在pkg-config中找不到它.从mesonbuild的文档中,我应该使用declare_dependency,我没有其源代码将其视为我的子项目.如果我使用dependency()来定义它,我找不到正确的参数来定义自定义位置.
如何声明非标准第三方库的依赖关系?
如
here和
here所述
原文链接:https://www.f2er.com/javaschema/281270.htmlThe main use case for this [
declare_dependency()
] is in subprojects.
和
[
dependency()
] finds an external dependency … withpkg-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)