mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-15 04:50:40 +03:00
04f25d3684
* Create xcodebuild.md xcodebuild * xcodebuild.md: shorten page * xcodebuild.md: use token formatting * xcodebuild.md: remove xcrun command * xcodebuild.md: fix linting and reword some descriptions * xcodebuild: change tokens to match the guidelines * xcodebuild: remove unclear part the first example's description
16 lines
380 B
Markdown
16 lines
380 B
Markdown
# xcodebuild
|
|
|
|
> Build Xcode projects.
|
|
|
|
- Build workspace:
|
|
|
|
`xcodebuild -workspace {{workspace_name.workspace}} -scheme {{scheme_name}} -configuration {{configuration_name}} clean build SYMROOT={{SYMROOT_path}}`
|
|
|
|
- Build project:
|
|
|
|
`xcodebuild -target {{target_name}} -configuration {{configuration_name}} clean build SYMROOT={{SYMROOT_path}}`
|
|
|
|
- Show SDKs:
|
|
|
|
`xcodebuild -showsdks`
|