mirror of
https://github.com/bazel-contrib/rules_foreign_cc
synced 2024-11-28 08:43:26 +00:00
aa61b9ad8b
* Remove `BUILD` files from source globs in examples * Updated example urls
18 lines
318 B
Plaintext
18 lines
318 B
Plaintext
load("@bazel_skylib//rules:select_file.bzl", "select_file")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
filegroup(
|
|
name = "all_srcs",
|
|
srcs = glob(
|
|
include = ["**"],
|
|
exclude = ["*.bazel"],
|
|
),
|
|
)
|
|
|
|
select_file(
|
|
name = "nasm",
|
|
srcs = ":all_srcs",
|
|
subpath = "nasm.exe",
|
|
)
|