--- /dev/null +++ BUILD.bazel @@ -0,0 +1,17 @@ +load("@rules_swift//swift:swift.bzl", "swift_library") + +swift_library( + name = "XcodeProj", + srcs = glob(["Sources/XcodeProj/**/*.swift"]), + visibility = ["//visibility:public"], + deps = [ + "@aexml//:AEXML", + "@pathkit//:PathKit", + ], +) + +alias( + name = "xcodeproj", + actual = ":XcodeProj", + visibility = ["//visibility:public"], +)