initial commit
On-device voice cloning CLI using VoxCPM2 via MLX on macOS. Swift 6, macOS 15+, depends on speech-swift (local path dep).
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
// swift-tools-version: 6.0
|
||||
import PackageDescription
|
||||
|
||||
let package = Package(
|
||||
name: "madcat-say",
|
||||
platforms: [.macOS(.v15)],
|
||||
dependencies: [
|
||||
.package(path: "../speech-swift"),
|
||||
.package(url: "https://github.com/apple/swift-argument-parser", from: "1.5.0"),
|
||||
],
|
||||
targets: [
|
||||
.executableTarget(
|
||||
name: "madcat-say",
|
||||
dependencies: [
|
||||
.product(name: "VoxCPM2TTS", package: "speech-swift"),
|
||||
.product(name: "AudioCommon", package: "speech-swift"),
|
||||
.product(name: "ArgumentParser", package: "swift-argument-parser"),
|
||||
],
|
||||
path: "Sources",
|
||||
swiftSettings: [.swiftLanguageMode(.v5)]
|
||||
),
|
||||
]
|
||||
)
|
||||
Reference in New Issue
Block a user