gpt4 book ai didi

conan - 有没有办法在介子中使用柯南包?

转载 作者:行者123 更新时间:2023-12-04 17:29:01 25 4
gpt4 key购买 nike

我们可以在 conan 中使用介子构建系统。但是我找不到任何关于如何在 meson.build 中添加 conan 包作为依赖项的文档。在cmake中非常简单,我们可以简单地使用conan_cmake_run。我怎样才能在介子中做类似的事情?

最佳答案

由于介子尚未支持柯南,因此我们需要自己进行桥接。好在很简单,举个例子:


conan_pkgs= {
'fmt':'fmt/5.3.0@', # <- Must contain @, otherwise Conan will think it is a path
# you can add more ...
}
deps=[]
foreach pkg_name, conan_ref : conan_pkgs
module_path = meson.current_build_dir() / 'conan-cmake' / pkg_name
run_command('conan','install',conan_ref, '-if',module_path,
'-g','cmake_find_package', check: true)
deps += dependency(pkg_name, method: 'cmake', cmake_module_path: module_path)
endforeach

executable('exe_need_deps', ['main.cpp'],
dependencies: deps
)

引用: This gist

关于conan - 有没有办法在介子中使用柯南包?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61419470/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com