diff --git a/sheets/xcodebuild b/sheets/xcodebuild new file mode 100644 index 0000000..604efa7 --- /dev/null +++ b/sheets/xcodebuild @@ -0,0 +1,11 @@ +# 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