ruki 6 ماه پیش
والد
کامیت
a2a8b02f7b
2فایلهای تغییر یافته به همراه10 افزوده شده و 12 حذف شده
  1. 5 6
      docs/guide/extensions/builtin-plugins.md
  2. 5 6
      docs/zh/guide/extensions/builtin-plugins.md

+ 5 - 6
docs/guide/extensions/builtin-plugins.md

@@ -54,17 +54,16 @@ Please see [JSONCompilationDatabase](https://clang.llvm.org/docs/JSONCompilation
 
 ### Generate Xcode project file
 
-At present, we have no time to implement the generation of xcode projects by ourselves, but it does not mean that it is not supported, because xmake supports the generation of cmakelists.txt files, and cmake supports the generation of xcode project files. Before the official implementation,
-We can also support it in disguise through cmake, xmake will automatically call cmake internally to transfer the generated results, there is no difference in use for users, just make sure that cmake has been installed:
+The current historical version uses CMake to generate Xcode projects, but the latest dev version, which is the upcoming 3.0.1 version, will bring a native Xcode generator.
+
+If you want to experience it in advance, you can update to the xmake dev version and try it, `xmake update -s dev`.
+
+For details, see: [#4810](https://github.com/xmake-io/xmake/issues/4810).
 
 ```sh
 $ xmake project -k xcode
 ```
 
-::: tip NOTE
-After we have time, we will re-implement each more complete xcode output plugin by ourselves, and welcome everyone to contribute.
-:::
-
 ### Generate VisualStudio Project
 
 #### Compile with xmake integration

+ 5 - 6
docs/zh/guide/extensions/builtin-plugins.md

@@ -64,17 +64,16 @@ $ xmake project -k compile_commands
 
 ### 生成 Xcode 工程文件 {#generate-xcode-project}
 
-目前,我们还没有时间去自己实现xcode工程的生成,但不代表不支持,因为xmake支持生成cmakelists.txt文件,而cmake是支持xcode工程文件生成的,在官方还没有实现之前,
-我们也可以通过cmake变相支持它,xmake会自动内部调用cmake中转下生成结果,对用户而言使用上没啥区别,只需要确保cmake已经安装即可:
+当前历史版本是利用 CMake 来生成的 Xcode 工程,不过最新的 dev 版本,也就是后续即将发布的 3.0.1 版本,将会带来原生的 Xcode 生成器。
+
+如果想要提前体验,可以更新到 xmake dev 版本尝试,`xmake update -s dev`。
+
+具体详情见:[#4810](https://github.com/xmake-io/xmake/issues/4810)。
 
 ```sh
 $ xmake project -k xcode
 ```
 
-::: tip 注意
-等之后有时间,我们会重新自己实现各更加完善的xcode输出插件,也欢迎大家帮忙贡献。
-:::
-
 ### 生成 VisualStudio 工程 {#generate-vs-project}
 
 #### 使用 xmake 集成编译 {#geneerate-vsxmake}