1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 19:05:59 +02:00

xcodebuild: add Chinese translation

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

View file

@ -0,0 +1,15 @@
# xcodebuild
> 构建Xcode项目.
- 构建工作区:
`xcodebuild -workspace {{工作区名.工作区}} -scheme {{主题名}} -configuration {{配置名}} clean build SYMROOT={{SYMROOT_路径}}`
- 构建项目:
`xcodebuild -target {{目标名}} -configuration {{配置名}} clean build SYMROOT={{SYMROOT_路径}}`
- 显示 SDK:
`xcodebuild -showsdks`