ghostty/macos/Package.swift
2023-02-19 10:44:53 -08:00

28 lines
542 B
Swift

// swift-tools-version: 5.7
// The swift-tools-version declares the minimum version of Swift required to
// build this package.
import PackageDescription
let package = Package(
name: "Ghostty",
platforms: [
// SwiftUI
.macOS(.v11),
],
products: [
.executable(
name: "Ghostty",
targets: ["Ghostty"]),
],
dependencies: [],
targets: [
.executableTarget(
name: "Ghostty",
dependencies: ["GhosttyKit"]),
.binaryTarget(
name: "GhosttyKit",
path: "GhosttyKit.xcframework"),
]
)