mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-16 16:56:09 +03:00
28 lines
542 B
Swift
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"),
|
|
]
|
|
)
|