mirror of
https://github.com/bazel-contrib/rules_foreign_cc
synced 2024-12-01 22:16:27 +00:00
16ddc00bd4
Be resilient with Bazel-built transitive dependencies duplicates - it is possible that some duplicate libraries, built with Bazel, will be passed as inputs to cmake_external or configure_make. rules_foreign_cc should filter duplicates out rather then fail. - add a test (which just builds the target) //cmake_synthetic:lib_with_duplicate_transitive_bazel_deps
6 lines
101 B
Python
6 lines
101 B
Python
filegroup(
|
|
name = "c_srcs",
|
|
srcs = glob(["**"]),
|
|
visibility = ["//visibility:public"],
|
|
)
|