From 65171068b97b0c7312d270cbe64edbb4eea2a4a6 Mon Sep 17 00:00:00 2001 From: Shameek Ganguly Date: Tue, 9 Apr 2024 17:05:29 -0700 Subject: [PATCH] Fix bazel build Signed-off-by: Shameek Ganguly --- graphics/BUILD.bazel | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/graphics/BUILD.bazel b/graphics/BUILD.bazel index 6d7b8822..d59e0a0e 100644 --- a/graphics/BUILD.bazel +++ b/graphics/BUILD.bazel @@ -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"], @@ -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,