本文介绍了CMake的find_package的Build2模拟的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
中是否有像CMake的find_package一样的机制?
Is there are any mechanism in Build2 like CMake's find_package?
如何包含仅存在于我的系统上而不存在于程序包管理器软件包中的库?
How to can i include a library that exists only on my system and not in package manager packages?
推荐答案
要使用 foo 作为 bar 项目中的依赖项,您需要添加一行:
To use foo as dependency in your bar project, you need to add a line:
cxx.libs += -lfoo
在〜/ bar / bar / buildfile中
in ~/bar/bar/buildfile
这篇关于CMake的find_package的Build2模拟的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!