Skip to content

Commit

Permalink
Also build examples
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Carroll <mjcarroll@intrinsic.ai>
  • Loading branch information
mjcarroll committed Oct 17, 2024
1 parent ac001d4 commit ea92484
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions examples/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
load("@rules_license//rules:license.bzl", "license")

package(
default_applicable_licenses = ["//:license"],
default_visibility = ["//visibility:public"],
)

license(
name = "license",
package_name = "gz-utils-examples",
)

cc_binary(
name = "log",
srcs = ["log/main.cc"],
deps = [
"//log:Logger",
],
)

cc_binary(
name = "using_cli",
srcs = ["using_cli/main.cc"],
deps = [
"//:Config",
"//cli",
],
)

0 comments on commit ea92484

Please sign in to comment.