From 957ffed4cad13a7700755eb3cd6b4fa7d6c450c7 Mon Sep 17 00:00:00 2001 From: James Zern Date: Tue, 1 Nov 2022 17:25:26 -0700 Subject: [PATCH] doc,ios/index.md: fix Xcode project reference MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit all.xcworkspace -> all.xcodeproj Bug: None Change-Id: Ieb2c00711d0b55f99fc574a03a75058554d62c75 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/281440 Commit-Queue: Björn Terelius Reviewed-by: Björn Terelius Reviewed-by: Artem Titov Cr-Commit-Position: refs/heads/main@{#38535} --- docs/native-code/ios/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/native-code/ios/index.md b/docs/native-code/ios/index.md index 29db854e0c..307379f17f 100644 --- a/docs/native-code/ios/index.md +++ b/docs/native-code/ios/index.md @@ -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*