mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 21:22:09 +02:00

* port: more info * xcodebuild: more info * xcode-select: more info * networksetup: more info
16 lines
476 B
Markdown
16 lines
476 B
Markdown
# xcodebuild
|
|
|
|
> Build Xcode projects.
|
|
> More information: <https://developer.apple.com/library/archive/technotes/tn2339/_index.html>.
|
|
|
|
- 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`
|