macos: starting boilerplate

This commit is contained in:
Mitchell Hashimoto
2023-02-12 21:36:27 -08:00
parent caa27fcf98
commit f2948fd6a6
3 changed files with 51 additions and 0 deletions

19
macos/Package.swift Normal file
View File

@@ -0,0 +1,19 @@
// 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: []),
]
)