conan.tools.scons

SConsDeps

SConsDepsSCons 的依赖项生成器。它将生成一个 SConscript_conandeps 文件,其中包含 SCons 构建所需的必要信息,以便针对所需的依赖项进行构建。

SConsDeps 生成器可以通过名称在 conanfile 中使用

conanfile.py
from conan import ConanFile

class Pkg(ConanFile):
    generators = "SConsDeps"
conanfile.txt
[generators]
SConsDeps

它也可以在 conanfile 的 generate() 方法中完全实例化

from conan import ConanFile
from conan.tools.scons import SConsDeps

class App(ConanFile):
    settings = "os", "arch", "compiler", "build_type"

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

执行 conan install 命令后,SConsDeps 生成器将创建 SConscript_conandeps 文件。此文件将为 SCons 提供以下信息:CPPPATHLIBPATHBINPATHLIBSFRAMEWORKSFRAMEWORKPATHCPPDEFINESCXXFLAGSCCFLAGSSHLINKFLAGSLINKFLAGS。此信息是为所有依赖项的累积列表以及每个需求生成的。您可以在您的消费者 SConscript 中像这样加载它

消费者 SConscript
...
info = SConscript('./SConscript_conandeps')
# You can use conandeps to get the information
# for all the dependencies.
flags = info["conandeps"]

# Or use the name of the requirement if
# you only want the information about that one.
flags = info["zlib"]

env.MergeFlags(flags)
...