Bazel:如何将标题汇总到一个包含路径中

时间:2018-06-03 03:22:29

标签: c++ bazel buck

在巴克,人们可能写道:

exported_headers = subdir_glob([
    ("lib/source", "video/**/*.h"),
    ("lib/source", "audio/**/*.h"),
],
excludes = [
    "lib/source/video/codecs/*.h",
],
prefix = "MediaLib/")

此行将使这些标题在MediaLib /下可用。 Bazel的等价物是什么?

2 个答案:

答案 0 :(得分:2)

我最终写了一条规则来做这件事。它提供类似于文件组输出的内容,并且可以与宏中的cc_library结合使用。

def _impl_flat_hdr_dir(ctx):
    path = ctx.attr.include_path
    d = ctx.actions.declare_directory(path)
    dests = [ctx.actions.declare_file(path + "/" + h.basename)
             for h in ctx.files.hdrs]

    cmd = """
        mkdir -p {path};
        cp {hdrs} {path}/.
        """.format(path=d.path, hdrs=" ".join([h.path for h in ctx.files.hdrs]))

    ctx.actions.run_shell(
       command = cmd,
       inputs = ctx.files.hdrs,
       outputs = dests + [d],
       progress_message = "doing stuff!!!"
    )

    return struct(
       files = depset(dests)
    )

flat_hdr_dir = rule(
    _impl_flat_hdr_dir,
    attrs = {
        "hdrs": attr.label_list(allow_files = True),
        "include_path": attr.string(mandatory = True),
    },
    output_to_genfiles = True,
)

答案 1 :(得分:0)

所以我没有测试它,但是从文档中得出它应该类似于:

cc_library(
name = "foo",
srcs = glob([
    "video/**/*.h",
    "audio/**/*.h",
 ],
excludes = [ "lib/source/video/codecs/*.h" ]
),
include_prefix = "MediaLib/"
)

https://docs.bazel.build/versions/master/be/c-cpp.html#cc_library.include_prefix https://docs.bazel.build/versions/master/be/functions.html#glob