准备构建

上一教程部分中,我们将 fmt 需求添加到 Conan 包中,以便为我们的“Hello World”C++ 库提供彩色输出。在本节中,我们重点介绍 recipe 中的 generate() 方法。此方法的目的是生成在运行构建步骤时可能需要的所有信息。这意味着诸如

  • 编写在构建步骤中使用的文件,例如脚本用于注入环境变量、传递给构建系统的文件等。

  • 根据设置和选项配置工具链以提供额外信息,或者从 Conan 默认生成但可能不适用于某些情况的工具链中移除信息。

我们基于上一教程部分,通过一个简单示例来解释如何使用此方法。我们在 recipe 中添加一个 with_fmt 选项,并根据其值决定是否需要 fmt 库。我们使用 generate() 方法修改工具链,使其向 CMake 传递一个变量,以便我们可以根据条件添加该库并在源代码中使用 fmt

请首先克隆源码以重新创建此项目。你可以在 GitHub 上的 examples2 仓库中找到它们。

$ git clone https://github.com/conan-io/examples2.git
$ cd examples2/tutorial/creating_packages/preparing_the_build

你会注意到 conanfile.py 文件相较于之前的 recipe 有一些变化。我们来看看相关部分

...
from conan.tools.build import check_max_cppstd, check_min_cppstd
...

class helloRecipe(ConanFile):
    name = "hello"
    version = "1.0"

    ...
    options = {"shared": [True, False],
               "fPIC": [True, False],
               "with_fmt": [True, False]}

    default_options = {"shared": False,
                       "fPIC": True,
                       "with_fmt": True}
    ...

    def validate(self):
        if self.options.with_fmt:
            check_min_cppstd(self, "11")
            check_max_cppstd(self, "14")

    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("optional_fmt")

    def requirements(self):
        if self.options.with_fmt:
            self.requires("fmt/8.1.1")

    def generate(self):
        tc = CMakeToolchain(self)
        if self.options.with_fmt:
            tc.variables["WITH_FMT"] = True
        tc.generate()

    ...

如你所见

  • 我们声明了一个新的 with_fmt 选项,默认值设置为 True

  • 根据 with_fmt 选项的值

    • 我们有条件地安装了 fmt/8.1.1 Conan 包。

    • 我们有条件地要求一个最低和最高 C++ 标准,因为 fmt 库至少需要 C++11,并且如果我们尝试使用高于 C++14 的标准,它将无法编译(只是一个例子,fmt 实际上可以使用更现代的标准进行构建)。

    • 我们有条件地将 WITH_FMT 变量和值 True 注入到 CMakeToolchain 中,以便我们可以在 hello 库的 CMakeLists.txt 中,以添加 CMake 的 fmt::fmt 目标。

  • 我们正在克隆该库的另一个分支。optional_fmt 分支包含代码中的一些更改。我们来看看 CMake 方面有哪些变化

CMakeLists.txt
cmake_minimum_required(VERSION 3.15)
project(hello CXX)

add_library(hello src/hello.cpp)
target_include_directories(hello PUBLIC include)
set_target_properties(hello PROPERTIES PUBLIC_HEADER "include/hello.h")

if (WITH_FMT)
    find_package(fmt)
    target_link_libraries(hello fmt::fmt)
    target_compile_definitions(hello PRIVATE USING_FMT=1)
endif()

install(TARGETS hello)

如你所见,我们使用了注入到 CMakeToolchain 中的 WITH_FMT。根据该值,我们将尝试查找 fmt 库并将其链接到我们的 hello 库中。另外,请注意我们添加了 USING_FMT=1 编译定义,我们根据是否选择添加对 fmt 的支持,在源代码中使用它。

hello.cpp
#include <iostream>
#include "hello.h"

#if USING_FMT == 1
#include <fmt/color.h>
#endif

void hello(){
    #if USING_FMT == 1
        #ifdef NDEBUG
        fmt::print(fg(fmt::color::crimson) | fmt::emphasis::bold, "hello/1.0: Hello World Release! (with color!)\n");
        #else
        fmt::print(fg(fmt::color::crimson) | fmt::emphasis::bold, "hello/1.0: Hello World Debug! (with color!)\n");
        #endif
    #else
        #ifdef NDEBUG
        std::cout << "hello/1.0: Hello World Release! (without color)" << std::endl;
        #else
        std::cout << "hello/1.0: Hello World Debug! (without color)" << std::endl;
        #endif
    #endif
}

让我们首先使用 with_fmt=True 从源码构建包,然后再使用 with_fmt=False。当 test_package 运行时,它将根据选项的值显示不同的消息。

$ conan create . --build=missing -o with_fmt=True
-------- 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! (with color!)

$ conan create . --build=missing -o with_fmt=False
-------- 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! (without color)

这只是一个简单示例,说明如何根据一个选项的值使用 generate() 方法来自定义工具链,但你可以在 generate() 方法中做很多其他事情,例如

  • 根据你的需要在构建中创建一个完整的自定义工具链。

  • 访问有关包依赖项的某些信息,例如

    • 通过 conf_info 进行的配置。

    • 依赖项的选项。

    • 使用 copy tool 从依赖项中导入文件。你还可以导入文件,为包创建清单,收集所有依赖项的版本和许可证。

  • 使用 Environment tools 生成系统环境信息。

  • 除了 ReleaseDebug 之外,添加自定义配置,同时考虑设置,例如 ReleaseSharedDebugShared

另请参阅