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/libssh2/BUILD.bazel
2021-06-01 13:59:16 -07:00

17 lines
296 B
Python

load("@bazel_skylib//rules:build_test.bzl", "build_test")
exports_files(
[
"BUILD.libssh2.bazel",
],
visibility = ["//visibility:public"],
)
build_test(
name = "libssh2_build_test",
targets = [
"@libssh2//:libssh2",
],
visibility = ["//:__pkg__"],
)