Português (Portuguese)
Português (Portuguese)
Appearance
Português (Portuguese)
Português (Portuguese)
Appearance
ENUM
BuildOrder
Contents
dependency
manual
public enum BuildOrder: Codable, Sendable
Represents the order in which targets are built within an Xcode scheme.
dependency
case dependency
Builds targets automatically based on their dependency graph. This is the default and recommended setting for most projects.
manual
case manual
Builds targets in the order they appear in the scheme’s Build list. Use this when you need fine-grained control.
dependency
to ensure reliable and maintainable build behavior.