mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2024-12-18 20:27:53 +00:00
20 lines
374 B
Swift
20 lines
374 B
Swift
// 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: [
|
|
.systemLibrary(name: "whisper", pkgConfig: "whisper"),
|
|
]
|
|
)
|