我想做这样的事情:
srcs = glob(["*.proto"]) - ["some.proto"],这种特殊的语法在Skylark中是无效的。我该怎么做才能在云雀里完成一个单子呢?
发布于 2022-05-04 19:50:44
glob提供了一个exclude属性,例如:
glob(
[
".editorconfig",
".gitattributes",
"third_party/eigen-*/**",
],
exclude = ["devertexwahn/flatland/copy.bara.sky"],
),https://stackoverflow.com/questions/72116910
复制相似问题