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 中使用已文档化的、公共的(不以 _ 开头)工具。

目录