Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
pjreiniger committed Oct 19, 2024
1 parent b738c0c commit c54a865
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
13 changes: 13 additions & 0 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -137,3 +137,16 @@ http_archive(
load("@rules_python//python:repositories.bzl", "py_repositories")

py_repositories()

http_archive(
name = "build_bazel_apple_support",
sha256 = "c4bb2b7367c484382300aee75be598b92f847896fb31bbd22f3a2346adf66a80",
url = "https://github.com/bazelbuild/apple_support/releases/download/1.15.1/apple_support.1.15.1.tar.gz",
)

load(
"@build_bazel_apple_support//lib:repositories.bzl",
"apple_support_dependencies",
)

apple_support_dependencies()
4 changes: 2 additions & 2 deletions wpilibNewCommands/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ cc_library(
srcs = glob(["src/main/native/cpp/**"]) + [":generated_cc_source"],
hdrs = glob(["src/main/native/include/**"]),
includes = ["src/main/native/include"],
strip_include_prefix = "src/main/native/include",
visibility = ["//visibility:public"],
deps = [
":generated_cc_headers",
"//wpilibc:wpilibc.static",
],
strip_include_prefix = "src/main/native/include",
visibility = ["//visibility:public"],
)

java_library(
Expand Down

0 comments on commit c54a865

Please sign in to comment.