-
-
Notifications
You must be signed in to change notification settings - Fork 559
Expand file tree
/
Copy pathPackage.swift
More file actions
40 lines (38 loc) · 1.44 KB
/
Copy pathPackage.swift
File metadata and controls
40 lines (38 loc) · 1.44 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
// swift-tools-version: 5.9
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "FluidVoice",
platforms: [
.macOS("15.0"),
],
dependencies: [
.package(url: "https://github.com/mxcl/AppUpdater.git", from: "1.0.0"),
.package(url: "https://github.com/altic-dev/FluidAudio.git", branch: "B/cohere-coreml-asr"),
.package(url: "https://github.com/mxcl/PromiseKit", from: "6.0.0"),
.package(url: "https://github.com/altic-dev/DynamicNotchKit.git", branch: "main"),
.package(url: "https://github.com/altic-dev/transcribe-cpp-swift.git", exact: "0.1.2"),
.package(url: "https://github.com/PostHog/posthog-ios.git", from: "3.0.0"),
],
targets: [
.target(
name: "CoreAudioCaptureSupport",
path: "Sources/CoreAudioCaptureSupport",
linkerSettings: [
.linkedFramework("CoreAudio"),
]
),
.executableTarget(
name: "FluidVoice",
dependencies: [
"AppUpdater",
"CoreAudioCaptureSupport",
"FluidAudio",
"PromiseKit",
"DynamicNotchKit",
.product(name: "TranscribeCpp", package: "transcribe-cpp-swift"),
.product(name: "PostHog", package: "posthog-ios"),
]
),
]
)