27 lines
757 B
Swift
27 lines
757 B
Swift
// swift-tools-version: 5.9
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "VoiceInput",
|
|
platforms: [.macOS(.v14)],
|
|
dependencies: [
|
|
.package(path: "Dependencies/DynamicNotchKit")
|
|
],
|
|
targets: [
|
|
.executableTarget(
|
|
name: "VoiceInput",
|
|
dependencies: ["DynamicNotchKit"],
|
|
path: "Sources",
|
|
linkerSettings: [
|
|
.linkedFramework("Speech"),
|
|
.linkedFramework("AVFAudio"),
|
|
.linkedFramework("Carbon"),
|
|
.linkedFramework("CoreGraphics"),
|
|
.linkedFramework("AppKit"),
|
|
.linkedFramework("Foundation"),
|
|
.linkedFramework("UserNotifications")
|
|
]
|
|
)
|
|
]
|
|
)
|