Skip to content

Translation 🌍

You can translate or improve the translation of this page.

Contribute

ENUM

CacheProfileType

Contents

  • Cases
    • onlyExternal
    • allPossible
    • none
    • custom(_:)
swift
public enum CacheProfileType: Codable, Equatable, Sendable

Cache profile type.

Cases

onlyExternal

swift
case onlyExternal

Replace external dependencies only (system default)

allPossible

swift
case allPossible

Replace as many targets as possible with cached binaries

none

swift
case none

No binary replacement, build everything from source

custom(_:)

swift
case custom(String)

Use named custom profile from profiles dictionary

Released under the MIT License.