show_build_set_proj
Retrieve build settings from an Xcode project file by specifying the project path and scheme. Essential for configuring and debugging Xcode builds.
Instructions
Shows build settings from a project file using xcodebuild. IMPORTANT: Requires projectPath and scheme. Example: show_build_set_proj({ projectPath: '/path/to/MyProject.xcodeproj', scheme: 'MyScheme' })
Input Schema
Name | Required | Description | Default |
---|---|---|---|
projectPath | Yes | Path to the .xcodeproj file (Required) | |
scheme | Yes | Scheme name to show build settings for (Required) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"projectPath": {
"description": "Path to the .xcodeproj file (Required)",
"type": "string"
},
"scheme": {
"description": "Scheme name to show build settings for (Required)",
"type": "string"
}
},
"required": [
"projectPath",
"scheme"
],
"type": "object"
}