Skip to content

翻訳 🌍

このページの翻訳を行ったり、改善したりすることができます。

コントリビュートする

ENUM

BuildOrder

Contents

swift
public enum BuildOrder: Codable, Sendable

Represents the order in which targets are built within an Xcode scheme.

Cases

dependency

swift
case dependency

Builds targets automatically based on their dependency graph. This is the default and recommended setting for most projects.

manual

swift
case manual

Builds targets in the order they appear in the scheme’s Build list. Use this when you need fine-grained control.

  • Warning: This option is deprecated and may not be respected in future versions of Xcode. Use dependency to ensure reliable and maintainable build behavior.

Released under the MIT License.