aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs
diff options
context:
space:
mode:
authorGravatar Googler <noreply@google.com>2015-03-26 17:35:46 +0000
committerGravatar Lukacs Berki <lberki@google.com>2015-03-27 13:12:10 +0000
commit1deaf23afc39fe4ba3beecb3000e5e50f1f0c1f8 (patch)
tree63cdbc067bbd0f574ea051053411adafcdbf4814 /docs
parent36120c761ef0ce4311203202bc57c40ddb759e40 (diff)
Description redacted.
-- MOS_MIGRATED_REVID=89613538
Diffstat (limited to 'docs')
-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?