whisper.cpp/Package.swift

20 lines
374 B
Swift
Raw Normal View History

// swift-tools-version:5.5
import PackageDescription
let package = Package(
name: "whisper",
platforms: [
.macOS(.v12),
.iOS(.v14),
.watchOS(.v4),
.tvOS(.v14)
],
products: [
.library(name: "whisper", targets: ["whisper"]),
],
targets: [
2024-12-08 11:35:35 +00:00
.systemLibrary(name: "whisper", pkgConfig: "whisper"),
]
)