Skip to content

Commit

Permalink
Add missing dependencies to targets (#644)
Browse files Browse the repository at this point in the history
* add Config to Color as dep
* Add Config to Angle
* Add AxisAlignedBox dep
* Add more missing deps
* fix BUILD file with buildifier

Signed-off-by: Udaya Prakash <[email protected]>
Signed-off-by: udayaprakash <[email protected]>
  • Loading branch information
udaya2899 authored Nov 15, 2024
1 parent 8e4cc6f commit 44e3bba
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,10 @@ cc_library(
srcs = ["src/Angle.cc"],
hdrs = ["include/gz/math/Angle.hh"],
includes = ["include"],
deps = [":Helpers"],
deps = [
":Config",
":Helpers",
],
)

cc_test(
Expand All @@ -79,6 +82,9 @@ cc_library(
":Helpers",
":Line3",
":MassMatrix3",
":Material",
":Vector3",
"@gz-utils//:ImplPtr",
],
)

Expand Down Expand Up @@ -147,6 +153,7 @@ cc_library(
],
includes = ["include"],
deps = [
":Config",
":Helpers",
":Vector3",
],
Expand Down Expand Up @@ -189,6 +196,8 @@ cc_library(
includes = ["include"],
deps = [
":Angle",
":Config",
":Helpers",
":Vector3",
"@gz-utils//:ImplPtr",
],
Expand Down Expand Up @@ -925,6 +934,7 @@ cc_library(
hdrs = ["include/gz/math/SemanticVersion.hh"],
includes = ["include"],
deps = [
":Config",
":Helpers",
"@gz-utils//:ImplPtr",
],
Expand Down Expand Up @@ -1009,9 +1019,11 @@ cc_library(
includes = ["include"],
deps = [
":Angle",
":Config",
":CoordinateVector3",
":Helpers",
":Matrix3",
":Vector3",
"@gz-utils//:ImplPtr",
],
)
Expand Down

0 comments on commit 44e3bba

Please sign in to comment.