1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.zh/osx/xcodebuild.md

17 lines
460 B
Markdown
Raw Normal View History

2019-03-19 17:09:23 +08:00
# xcodebuild
> 构建 Xcode 项目。
> 更多信息:<https://developer.apple.com/library/archive/technotes/tn2339/_index.html>.
2019-03-19 17:09:23 +08:00
- 构建工作区:
2019-03-19 17:09:23 +08:00
`xcodebuild -workspace {{工作区名.工作区}} -scheme {{主题名}} -configuration {{配置名}} clean build SYMROOT={{SYMROOT_路径}}`
- 构建项目:
2019-03-19 17:09:23 +08:00
`xcodebuild -target {{目标名}} -configuration {{配置名}} clean build SYMROOT={{SYMROOT_路径}}`
2022-03-27 07:25:15 +02:00
- 显示 SDK:
2019-03-19 17:09:23 +08:00
`xcodebuild -showsdks`