19 lines
441 B
Swift
19 lines
441 B
Swift
// swift-tools-version: 5.9
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "swift-vt-xcframework",
|
|
platforms: [.macOS(.v13)],
|
|
targets: [
|
|
.executableTarget(
|
|
name: "swift-vt-xcframework",
|
|
dependencies: ["GhosttyVt"],
|
|
path: "Sources"
|
|
),
|
|
.binaryTarget(
|
|
name: "GhosttyVt",
|
|
path: "../../zig-out/lib/ghostty-vt.xcframework"
|
|
),
|
|
]
|
|
)
|