2
0
Fork 0
mirror of https://github.com/bazel-contrib/rules_foreign_cc synced 2024-11-28 08:43:26 +00:00
rules_foreign_cc/examples/third_party/openssl/BUILD.nasm.bazel
UebelAndre aa61b9ad8b
Minor cleanup for examples (#835)
* Remove `BUILD` files from source globs in examples

* Updated example urls
2021-12-30 16:37:31 +00:00

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",
)