1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-30 18:17:57 +01:00

xctool: add Chinese translation

This commit is contained in:
wizarot 2019-03-19 17:09:33 +08:00 committed by Owen Voke
parent 26910e84b0
commit e6b3dee5f7

15
pages.zh/osx/xctool.md Normal file
View file

@ -0,0 +1,15 @@
# xctool
> 用于构建 Xcode 项目的工具.
- 在没有任何工作区的情况下生成单个项目:
`xctool -project {{你的项目.名称}} -scheme {{方案}} build`
- 构建属于工作区的项目:
`xctool -workspace {{你的工作区.名字}} -scheme {{方案}} build`
- 清理、构建和执行所有测试:
`xctool -workspace {{你的工作区.名字}} -scheme {{方案}} clean build test`