Skip to content

ENUM

Executable

Contents

  • Cases
    • askOnLaunch
    • executable(_:)
swift
public enum Executable: Equatable, Codable, Sendable

Represents the executable configuration for a scheme's launch or profile action.

Cases

askOnLaunch

swift
case askOnLaunch

Presents the "Ask on Launch" dialog when running or profiling, allowing the user to choose the app to launch at runtime.

executable(_:)

swift
case executable(TargetReference?)

Uses a specific target reference as the executable, or nil for the default.

Released under the MIT License.