Skip to content

Commit

Permalink
Fix bazel build
Browse files Browse the repository at this point in the history
Signed-off-by: Shameek Ganguly <[email protected]>
  • Loading branch information
shameekganguly committed Apr 10, 2024
1 parent 466f83f commit 6517106
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion graphics/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ public_headers_no_gen = glob([
"include/gz/common/**/*.hh",
])

private_headers = glob(["src/VHACD/*.h"])

sources = glob(
["src/*.cc"],
exclude = ["src/*_TEST.cc"],
Expand Down Expand Up @@ -41,7 +43,7 @@ public_headers = public_headers_no_gen + [

cc_library(
name = "graphics",
srcs = sources,
srcs = sources + private_headers,
hdrs = public_headers,
includes = ["include"],
visibility = GZ_VISIBILITY,
Expand Down

0 comments on commit 6517106

Please sign in to comment.