get_build_settings
Retrieve build settings for a specific scheme in an Xcode project by providing the project path, scheme, configuration, and target platform. Simplify development workflows with precise control over project configurations.
Instructions
Get build settings for a specific scheme in an Xcode project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
configuration | No | Build configuration (Debug/Release) | |
platform | No | Target platform (iOS, macOS, tvOS, watchOS, visionOS) | |
projectPath | Yes | Path to the Xcode project or workspace | |
scheme | Yes | Xcode scheme to get settings for |
Input Schema (JSON Schema)
{
"properties": {
"configuration": {
"description": "Build configuration (Debug/Release)",
"enum": [
"Debug",
"Release"
],
"type": "string"
},
"platform": {
"description": "Target platform (iOS, macOS, tvOS, watchOS, visionOS)",
"enum": [
"iOS",
"macOS",
"tvOS",
"watchOS",
"visionOS"
],
"type": "string"
},
"projectPath": {
"description": "Path to the Xcode project or workspace",
"type": "string"
},
"scheme": {
"description": "Xcode scheme to get settings for",
"type": "string"
}
},
"required": [
"projectPath",
"scheme"
],
"type": "object"
}