Skip to content

Latest commit

History

History
15 lines (8 loc) 路 380 Bytes

xcodebuild.md

File metadata and controls

15 lines (8 loc) 路 380 Bytes

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