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 中使用。

目录