2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-05 12:00:16 +00:00
cheat.sheets/sheets/xcodebuild
2017-06-04 21:16:12 +00:00

12 lines
342 B
Plaintext

# 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