app foldee

This commit is contained in:
marcus.hinz
2026-06-14 12:13:49 +02:00
parent 6d29263392
commit b30e4a7d31
73 changed files with 994 additions and 175 deletions
+20
View File
@@ -0,0 +1,20 @@
// swift-tools-version:5.9
import PackageDescription
let package = Package(
name: "MiniTerm",
platforms: [
.macOS(.v13)
],
dependencies: [
// Pin to a tag instead of `branch` if you prefer reproducible builds,
// e.g. .package(url: "...", from: "1.2.0")
.package(url: "https://github.com/migueldeicaza/SwiftTerm.git", branch: "main")
],
targets: [
.executableTarget(
name: "MiniTerm",
dependencies: ["SwiftTerm"]
)
]
)