Skip to content

ENUM

ForeignBuild.Output

Contents

  • Cases
    • xcframework(path:linking:)
swift
public enum Output: Codable, Hashable, Sendable

Describes the binary artifact produced by a foreign (non-Xcode) build system.

Cases

xcframework(path:linking:)

swift
case xcframework(path: Path, linking: Linking)

An XCFramework output.

  • Parameters:
    • path: Relative path to the xcframework.
    • linking: Whether the xcframework is statically or dynamically linked.

Released under the MIT License.