mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-14 15:56:13 +03:00
20 lines
361 B
Swift
20 lines
361 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),
|
|
],
|
|
dependencies: [],
|
|
targets: [
|
|
.executableTarget(
|
|
name: "Ghostty",
|
|
dependencies: []),
|
|
]
|
|
)
|