ENUM
BuildOrder
Contents
- Cases
dependency
manual
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.