xcode_build_project
Build Xcode projects using specified schemes, configurations, and destinations. Automates iOS/macOS project compilation with proper inputs for streamlined development workflows.
Instructions
Build an Xcode project with specific scheme and configuration
Input Schema
Name | Required | Description | Default |
---|---|---|---|
configuration | No | Build configuration (Debug/Release) | Debug |
destination | No | Build destination (-destination flag) | |
project_path | Yes | Path to .xcodeproj file | |
scheme | Yes | Build scheme name |
Input Schema (JSON Schema)
{
"properties": {
"configuration": {
"default": "Debug",
"description": "Build configuration (Debug/Release)",
"type": "string"
},
"destination": {
"description": "Build destination (-destination flag)",
"type": "string"
},
"project_path": {
"description": "Path to .xcodeproj file",
"type": "string"
},
"scheme": {
"description": "Build scheme name",
"type": "string"
}
},
"required": [
"project_path",
"scheme"
],
"type": "object"
}