Skip to content

Commit

Permalink
Fixing bazel target misconfigurations
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanDuPont committed Oct 12, 2024
1 parent 77b005f commit 25b77c9
Show file tree
Hide file tree
Showing 7 changed files with 65 additions and 27 deletions.
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ use_repo(oci, "py3.11")
oci.pull(
name = "gcc",
image = "index.docker.io/library/gcc",
digest = "sha256:sha256:c24e2fd069574a63513d749a90459eed8b0cc43f3fbb580a0296cdee3ae0df0d",
digest = "sha256:c24e2fd069574a63513d749a90459eed8b0cc43f3fbb580a0296cdee3ae0df0d",
platforms = [
"linux/amd64",
"linux/arm64",
Expand Down
42 changes: 36 additions & 6 deletions MODULE.bazel.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/drivers/dynamixel/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ cc_library(
hdrs = [
"dynamixel_sdk.h",
],
visibility = ["//visibility:public"],
deps = [
":group_io_lib",
":packet_handler_lib",
Expand Down
12 changes: 6 additions & 6 deletions src/kinematics/drivetrain/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ cc_library(
)

cc_library(
name = "tank_kinematics_lib",
name = "tank_drive_kinematics_lib",
srcs = [
"tank_kinematics.cpp",
"tank_drive_kinematics.cpp",
],
hdrs = [
"tank_kinematics.h",
"tank_drive_kinematics.h",
],
visibility = ["//visibility:public"],
deps = [
Expand All @@ -46,12 +46,12 @@ cc_library(
)

cc_library(
name = "x_kinematics_lib",
name = "x_drive_kinematics_lib",
srcs = [
"x_kinematics.cpp",
"x_drive_kinematics.cpp",
],
hdrs = [
"x_kinematics.h",
"x_drive_kinematics.h",
],
visibility = ["//visibility:public"],
deps = [
Expand Down
Loading

0 comments on commit 25b77c9

Please sign in to comment.