1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-31 02:18:01 +01:00
tldr/pages/osx/xcodebuild.md

16 lines
380 B
Markdown
Raw Normal View History

# 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`