Skip to content

Commit

Permalink
Add bzlmod support to cc example
Browse files Browse the repository at this point in the history
  • Loading branch information
BalestraPatrick committed Jan 8, 2023
1 parent b86d679 commit 39f1ac7
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
14 changes: 14 additions & 0 deletions examples/cc/MODULE.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
bazel_dep(name = "rules_apple", repo_name = "build_bazel_rules_apple", version = "2.0.0")
bazel_dep(name = "bazel_skylib", version = "1.3.0")
bazel_dep(name = "rules_xcodeproj", repo_name = "com_github_buildbuddy_io_rules_xcodeproj", version = "1.5.0")
# TODO: bump to newest rules_swift containing bzlmod fixes and remove local_path_override
# bazel_dep(name = "rules_swift", repo_name = "build_bazel_rules_swift", version = "1.5.0")
local_path_override(
module_name = "rules_swift",
path = "../../../rules_swift"
)

local_path_override(
module_name = "rules_xcodeproj",
path = "../.."
)
5 changes: 5 additions & 0 deletions examples/cc/WORKSPACE.bzlmod
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@

local_repository(
name = "examples_cc_external",
path = "external",
)

0 comments on commit 39f1ac7

Please sign in to comment.