You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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