Skip to content

Commit

Permalink
Fix Include Paths in Bazel Build (#1228)
Browse files Browse the repository at this point in the history
Adds the include paths for when this project is added as an
external project in another workspace.
  • Loading branch information
jungleraptor authored Sep 21, 2022
1 parent ddc35f1 commit 6bcbc3d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion c/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,10 @@ cc_library(
"src/v4/vehicle.c",
],
hdrs = SBP_INCLUDE + SBP_INCLUDE_INTERNAL,
copts = ["-Ic/src/include"],
copts = [
"-Ic/src/include",
"-Iexternal/libsbp/c/src/include",
],
includes = [
"include",
],
Expand Down

0 comments on commit 6bcbc3d

Please sign in to comment.