Files
tldr/pages.zh/osx/xcodebuild.md

16 lines
481 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# xcodebuild
> 构建 Xcode 项目。
> 更多信息:<https://developer.apple.com/library/archive/technotes/tn2339/_index.html>。
- 构建工作区:
`xcodebuild -workspace {{workspace_name.workspace}} -scheme {{scheme_name}} -configuration {{configuration_name}} clean build SYMROOT={{SYMROOT_path}}`
- 构建项目:
`xcodebuild -target {{target_name}} -configuration {{configuration_name}} clean build SYMROOT={{SYMROOT_path}}`
- 显示 SDK
`xcodebuild -showsdks`