Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Carroll <[email protected]>
  • Loading branch information
mjcarroll committed Mar 8, 2024
1 parent b4ac4da commit 4a840f8
Showing 1 changed file with 24 additions and 21 deletions.
45 changes: 24 additions & 21 deletions BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -204,33 +204,36 @@ cc_test(
)

gz_configure_file(
name = "msgs_yaml",
src = "conf/msgs.yaml.in",
out = "msgs.yaml",
package = "msgs",
defines = [
"PROJECT_NAME_NO_VERSION_LOWER=msgs",
"gz_library_path=msgs/cmdmsgs",
]

name = "msgs_yaml",
src = "conf/msgs.yaml.in",
out = "msgs.yaml",
defines = [
"PROJECT_NAME_NO_VERSION_LOWER=msgs",
"gz_library_path=msgs/cmdmsgs",
],
package = "msgs",
)

gz_configure_file(
name = "msgs_rb",
src = "core/src/cmd/cmdmsgs.rb.in",
out = "cmdmsgs.rb",
package = "msgs",
defines = [
"library_location=libgz-msgs.so",
]
name = "msgs_rb",
src = "core/src/cmd/cmdmsgs.rb.in",
out = "cmdmsgs.rb",
defines = [
"library_location=libgz-msgs.so",
],
package = "msgs",
)

cc_binary(
name = "gz-msgs",
linkshared = True,
srcs = ["core/src/gz.cc"],
data = [":msgs_yaml", ":msgs_rb", ":gzmsgs_proto"],
deps = [":msgs"]
name = "gz-msgs",
srcs = ["core/src/gz.cc"],
data = [
":gzmsgs_proto",
":msgs_rb",
":msgs_yaml",
],
linkshared = True,
deps = [":msgs"],
)

add_lint_tests()

0 comments on commit 4a840f8

Please sign in to comment.