What's the difference between this repo and rules_apple? #2836
-
Hi, Thank you for the amazing, open-source work on this repo. It all looks very cool. I'm new to Bazel and researching its ecosystem. So far I haven't been able to find a clear explanation between use cases of I'll be grateful for an explanation, and thank you again. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
rules_apple provides you with rules to create targets for Apple platforms, e.g. iOS Application bundles. rules_xcodeproj provides you with a rule that creates an Xcode project file ( |
Beta Was this translation helpful? Give feedback.
rules_apple provides you with rules to create targets for Apple platforms, e.g. iOS Application bundles. rules_xcodeproj provides you with a rule that creates an Xcode project file (
.xcodeproj
) that builds your Bazel targets with Bazel. You can use rules_xcodeproj without using any rules_apple rules, but most likely you will have and use some if you are using rules_xcodeproj.