mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
Project import generated by Copybara. GitOrigin-RevId: 92ea93d1b47a82667044bd0af05f7fdb34d2c2c2
13 lines
343 B
Python
13 lines
343 B
Python
load("@allwpilib_pip_deps//:requirements.bzl", "requirement")
|
|
load("@rules_python//python:defs.bzl", "py_binary")
|
|
|
|
py_binary(
|
|
name = "generate_native_lib_files",
|
|
srcs = glob(["*.py"]),
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//shared/bazel/rules/robotpy:hack_pkgcfgs",
|
|
requirement("semiwrap"),
|
|
],
|
|
)
|