aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs/FAQ.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/FAQ.md')
-rw-r--r--docs/FAQ.md13
1 files changed, 12 insertions, 1 deletions
diff --git a/docs/FAQ.md b/docs/FAQ.md
index 5ca9a4191f..57efd05d5a 100644
--- a/docs/FAQ.md
+++ b/docs/FAQ.md
@@ -342,7 +342,18 @@ No, but we should. Stay tuned.
I use Eclipse/IntelliJ. How does Bazel interoperate with IDEs?
--------------------------------------------------------------
-We currently have no IDE integration API.
+We currently have no IDE integration API as such but the iOS rules generate Xcode
+projects based on the bazel BUILD targets (see below).
+
+How does Bazel interact with Xcode?
+-----------------------------------
+
+Bazel generates Xcode projects that you can use to work with any inputs and
+dependencies for the target, build apps from Xcode directly and deploy to the
+simulator and devices. To use this, open the project file whose path is printed
+by Bazel after building any iOS target. There is no support to invoke Bazel from
+Xcode (for example to re-generate generated sources such as Objc files based on
+protos), nor to open Xcode from Bazel directly.
I use Jenkins/CircleCI/TravisCI. How does Bazel interoperate with CI systems?