Recipe 工具

工具是可以在 Conan recipe 中导入和使用的所有事物。

导入路径始终是这样的

from conan.tools.cmake import CMakeToolchain, CMakeDeps, CMake
from conan.tools.microsoft import MSBuildToolchain, MSBuildDeps, MSBuild

主要指南是

  • recipe 可以导入的所有内容都属于 from conan.tools。任何其他内容都是私有实现,不应在 recipe 中使用。

  • 只有文档记录的、公共的(前面没有 _)工具才能在 recipe 中使用。

目录