Skip to content

Commit

Permalink
Missing dep
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Carroll <[email protected]>
  • Loading branch information
mjcarroll committed Mar 11, 2024
1 parent f41e1ed commit 258844e
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
4 changes: 4 additions & 0 deletions BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,10 @@ cc_library(
srcs = sources + private_headers,
hdrs = public_headers,
includes = ["include"],
copts = [
"-fexceptions",
"-Wno-unused-value",
],
deps = [
GZ_ROOT + "utils",
GZ_ROOT + "math",
Expand Down
13 changes: 13 additions & 0 deletions test/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,7 +1,17 @@
load(
"@gz//bazel/skylark:build_defs.bzl",
"GZ_FEATURES",
"GZ_ROOT",
)
load(
"@gz//bazel/lint:lint.bzl",
"add_lint_tests",
)

package(
default_applicable_licenses = [GZ_ROOT + "common:license"],
features = GZ_FEATURES,
)

cc_test(
name = "INTEGRATION_console",
Expand Down Expand Up @@ -35,8 +45,11 @@ cc_test(
GZ_ROOT + "common",
GZ_ROOT + "common/graphics",
GZ_ROOT + "common/testing",
GZ_ROOT + "math",
"@gtest//:gtest_main",
],
)

exports_files(["data"])

add_lint_tests()

0 comments on commit 258844e

Please sign in to comment.