-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPackage.swift
More file actions
58 lines (56 loc) · 1.69 KB
/
Package.swift
File metadata and controls
58 lines (56 loc) · 1.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// swift-tools-version: 6.0
import PackageDescription
let package = Package(
name: "MiniWhisper",
platforms: [
.macOS(.v14)
],
products: [
.executable(name: "MiniWhisper", targets: ["MiniWhisper"]),
.executable(name: "MiniWhisperDebug", targets: ["MiniWhisperDebug"])
],
dependencies: [
.package(
url: "https://github.com/FluidInference/FluidAudio.git",
.upToNextMinor(from: "0.12.6")
)
],
targets: [
.executableTarget(
name: "MiniWhisper",
dependencies: [
"FluidAudio",
"whisper"
],
path: "Sources/MiniWhisper",
exclude: ["Resources"],
swiftSettings: [
.enableExperimentalFeature("StrictConcurrency")
]
),
.executableTarget(
name: "MiniWhisperDebug",
dependencies: [
"FluidAudio",
"whisper"
],
path: "Sources/MiniWhisperDebug",
swiftSettings: [
.enableExperimentalFeature("StrictConcurrency")
]
),
.binaryTarget(
name: "whisper",
url: "https://github.com/andyhtran/MiniWhisper/releases/download/whisper-xcframework-1.0/whisper.xcframework.zip",
checksum: "866b43e4a3f31d1f898c7300d36e786841723e7be5a0fcdaa5879daea2f4389d"
),
.testTarget(
name: "MiniWhisperTests",
dependencies: ["MiniWhisper"],
path: "Tests/MiniWhisperTests",
swiftSettings: [
.enableExperimentalFeature("StrictConcurrency")
]
)
]
)