mirror of
https://github.com/ghostty-org/ghostty.git
synced 2026-05-25 14:28:32 +00:00
This updates simdutf to my fork which has a SIMDUTF_NO_LIBCXX option that removes all libc++ and libc++ ABI dependencies. From there, the hand-written simd code we have has been updated to also no longer use any libc++ features. Part of this required removing utfcpp since it depended on libc++ (`<iterator>`). libghostty-vt now only depends on libc.
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"
|
|
),
|
|
]
|
|
)
|