--- syntax: markdown tags: [tldr, osx] source: https://github.com/tldr-pages/tldr.git --- # xcodebuild > Build Xcode projects. > More information: . - 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`