2016-08-21 11:59:23 +01:00
|
|
|
# xcodebuild
|
|
|
|
|
|
|
|
> Build Xcode projects.
|
2022-02-14 03:43:29 +00:00
|
|
|
> More information: <https://developer.apple.com/library/archive/technotes/tn2339/_index.html>.
|
2016-08-21 11:59:23 +01:00
|
|
|
|
|
|
|
- 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`
|