Skip to content

Commit 285a469

Browse files
Fix bazel build (#592)
Signed-off-by: Shameek Ganguly <[email protected]>
1 parent cd159c2 commit 285a469

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

graphics/BUILD.bazel

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ public_headers_no_gen = glob([
2121
"include/gz/common/**/*.hh",
2222
])
2323

24+
private_headers = glob(["src/VHACD/*.h"])
25+
2426
sources = glob(
2527
["src/*.cc"],
2628
exclude = ["src/*_TEST.cc"],
@@ -51,7 +53,7 @@ public_headers = public_headers_no_gen + [
5153

5254
cc_library(
5355
name = "graphics",
54-
srcs = sources,
56+
srcs = sources + private_headers,
5557
hdrs = public_headers,
5658
copts = [
5759
"-Wno-implicit-fallthrough",

0 commit comments

Comments
 (0)