将依赖项添加到包中¶
在上一教程部分中,我们为一个“Hello World”C++库创建了一个 Conan 包。我们使用conan.tools.scm.Git()工具从 Git 仓库中检索源代码。到目前为止,该包没有任何对其他 Conan 包的依赖关系。让我们解释一下如何以与我们在使用包部分中所做非常相似的方式将依赖项添加到我们的包中。我们将使用fmt库为我们的“Hello World”库添加一些花哨的彩色输出。
请先克隆源代码以重新创建此项目。您可以在 GitHub 上的examples2 仓库中找到它们。
$ git clone https://github.com/conan-io/examples2.git
$ cd examples2/tutorial/creating_packages/add_requires
您会注意到与之前的配方相比,conanfile.py文件有一些变化。让我们检查相关的部分。
...
from conan.tools.build import check_max_cppstd, check_min_cppstd
...
class helloRecipe(ConanFile):
name = "hello"
version = "1.0"
...
generators = "CMakeDeps"
...
def validate(self):
check_min_cppstd(self, "11")
check_max_cppstd(self, "20")
def requirements(self):
self.requires("fmt/8.1.1")
def source(self):
git = Git(self)
git.clone(url="https://github.com/conan-io/libhello.git", target=".")
# Please, be aware that using the head of the branch instead of an immutable tag
# or commit is not a good practice in general
git.checkout("require_fmt")
首先,我们设置
generators
类属性,以便 Conan 调用CMakeDeps生成器。在之前的配方中不需要此操作,因为我们没有依赖项。CMakeDeps
将生成 CMake 查找fmt
库所需的所有配置文件。接下来,我们使用requires()方法将fmt依赖项添加到我们的包中。
此外,请检查我们在source()方法中添加了一行。我们使用Git().checkout方法在require_fmt分支中检出源代码。此分支包含源代码中添加库消息颜色的更改,以及
CMakeLists.txt
中声明我们正在使用fmt
库的更改。最后,请注意我们向配方中添加了validate()方法。我们已经在使用包部分中使用了此方法来针对不受支持的配置引发错误。在这里,我们调用check_min_cppstd()和check_max_cppstd()以检查我们在设置中是否至少使用了 C++11 且至多使用了 C++20 标准。
您可以检查新的源代码,在require_fmt中使用 fmt 库。您会看到hello.cpp文件为输出消息添加了颜色。
#include <fmt/color.h>
#include "hello.h"
void hello(){
#ifdef NDEBUG
fmt::print(fg(fmt::color::crimson) | fmt::emphasis::bold, "hello/1.0: Hello World Release!\n");
#else
fmt::print(fg(fmt::color::crimson) | fmt::emphasis::bold, "hello/1.0: Hello World Debug!\n");
#endif
...
让我们使用当前默认配置从源代码构建包,然后让test_package
文件夹测试包。您现在应该会看到带有颜色的输出消息。
$ conan create . --build=missing
-------- Exporting the recipe ----------
...
-------- Testing the package: Running test() ----------
hello/1.0 (test package): Running test()
hello/1.0 (test package): RUN: ./example
hello/1.0: Hello World Release!
hello/1.0: __x86_64__ defined
hello/1.0: __cplusplus 201103
hello/1.0: __GNUC__ 4
hello/1.0: __GNUC_MINOR__ 2
hello/1.0: __clang_major__ 13
hello/1.0: __clang_minor__ 1
hello/1.0: __apple_build_version__ 13160021
另请参阅