作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我们可以在 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
)
关于conan - 有没有办法在介子中使用柯南包?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61419470/
我是一名优秀的程序员,十分优秀!