Skip to content

Commit

Permalink
Update BUILD.bazel target name (#2131)
Browse files Browse the repository at this point in the history
All of our build target names are snake case. The only exceptions are
`stablehlo-opt`, `stablehlo-lsp-server`, and `stablehlo-translate` which
were named such to follow MLIR style for passes.
  • Loading branch information
ghpvnist authored Mar 27, 2024
1 parent 00f2ab3 commit 757d53f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/c++/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package(
)

cc_binary(
name = "example-add",
name = "example_add",
srcs = [
"ExampleAdd.cpp",
],
Expand All @@ -33,7 +33,7 @@ cc_binary(
)

cc_test(
name = "example-add-test",
name = "example_add_test",
srcs = [
"ExampleAdd.cpp",
],
Expand Down

0 comments on commit 757d53f

Please sign in to comment.