tool_requires 中透明地使用 cmake 模块

当我们想要重用另一个 Conan 包中的某些 .cmake 脚本时,可能存在几种不同的场景,例如 .cmake 脚本是在常规 requires 还是 tool_requires 中。

此外,可能需要两种不同的方法

  • 脚本的使用者可以在他们的 CMakeLists.txt 中进行显式的 include(MyScript)。这种方法非常明确且易于设置,只需在食谱中定义 self.cpp_info.builddirs,使用 CMakeToolchain 的使用者将能够自动执行 include() 并使用该功能。请参阅 此处的示例

  • 使用者希望在执行 find_package() 时自动加载依赖项的 cmake 模块。此当前示例实现了这种情况。

假设我们有一个包,打算用作 tool_require,其食谱如下所示

myfunctions/conanfile.py
import os
from conan import ConanFile
from conan.tools.files import copy

class Conan(ConanFile):
    name = "myfunctions"
    version = "1.0"
    exports_sources = ["*.cmake"]

    def package(self):
        copy(self, "*.cmake", self.source_folder, self.package_folder)

    def package_info(self):
        self.cpp_info.set_property("cmake_build_modules", ["myfunction.cmake"])

以及在以下位置的 myfunction.cmake 文件

myfunctions/myfunction.cmake
function(myfunction)
    message("Hello myfunction!!!!")
endfunction()

我们可以执行 cd myfunctions && conan create .,这将创建包含 cmake 脚本的 myfunctions/1.0 包。

然后,使用者包将如下所示

consumer/conanfile.py
from conan import ConanFile
from conan.tools.cmake import CMake, CMakeDeps, CMakeToolchain

class Conan(ConanFile):
    settings = "os", "compiler", "build_type", "arch"
    tool_requires = "myfunctions/1.0"

    def generate(self):
        tc = CMakeToolchain(self)
        tc.generate()

        deps = CMakeDeps(self)
        # By default 'myfunctions-config.cmake' is not created for tool_requires
        # we need to explicitly activate it
        deps.build_context_activated = ["myfunctions"]
        # and we need to tell to automatically load 'myfunctions' modules
        deps.build_context_build_modules = ["myfunctions"]
        deps.generate()

    def build(self):
        cmake = CMake(self)
        cmake.configure()

以及类似的 CMakeLists.txt

consumer/CMakeLists.txt
cmake_minimum_required(VERSION 3.0)
project(test)
find_package(myfunctions CONFIG REQUIRED)
myfunction()

然后,使用者将能够自动调用依赖项模块中的 myfunction()

$ conan build .
...
Hello myfunction!!!!

如果由于某种原因,使用者希望强制从 tool_requires() 作为 CMake 模块使用,则使用者可以执行 deps.set_property("myfunctions", "cmake_find_mode", "module", build_context=True),然后 find_package(myfunctions MODULE REQUIRED) 将起作用。