doc,ios/index.md: fix Xcode project reference

all.xcworkspace -> all.xcodeproj

Bug: None
Change-Id: Ieb2c00711d0b55f99fc574a03a75058554d62c75
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/281440
Commit-Queue: Björn Terelius <terelius@google.com>
Reviewed-by: Björn Terelius <terelius@google.com>
Reviewed-by: Artem Titov <titovartem@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#38535}
This commit is contained in:
James Zern 2022-11-01 17:25:26 -07:00 committed by WebRTC LUCI CQ
parent 0487c5797a
commit 957ffed4ca

View File

@ -101,14 +101,14 @@ Xcode is the default and preferred IDE to develop for the iOS platform.
*Generating an Xcode project*
To have GN generate Xcode project files, pass the argument `--ide=xcode`
when running `gn gen`. This will result in a file named `all.xcworkspace`
when running `gn gen`. This will result in a file named `all.xcodeproj`
placed in your specified output directory.
Example:
```
$ gn gen out/ios --args='target_os="ios" target_cpu="arm64"' --ide=xcode
$ open -a Xcode.app out/ios/all.xcworkspace
$ open -a Xcode.app out/ios/all.xcodeproj
```
*Compile and run with Xcode*