Skip to content

Commit

Permalink
Start using MODULE.bazel
Browse files Browse the repository at this point in the history
  • Loading branch information
Strilanc committed Mar 21, 2024
1 parent 264d32d commit da6f8ca
Show file tree
Hide file tree
Showing 4 changed files with 1,668 additions and 30 deletions.
6 changes: 3 additions & 3 deletions BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ cc_test(
data = glob(["testdata/**"]),
includes = ["src/"],
deps = [
"@gtest",
"@gtest//:gtest_main",
"@googletest//:gtest",
"@googletest//:gtest_main",
],
)

Expand All @@ -99,7 +99,7 @@ cc_binary(
],
includes = ["src/"],
linkshared = 1,
deps = ["@pybind11"],
deps = ["@pybind11//:pybind11"],
)

genrule(
Expand Down
2 changes: 2 additions & 0 deletions MODULE.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
bazel_dep(name = "googletest", version = "1.14.0")
bazel_dep(name = "pybind11_bazel", version = "2.11.1")
Loading

0 comments on commit da6f8ca

Please sign in to comment.