mirror of
https://github.com/PABannier/bark.cpp
synced 2026-03-01 20:51:26 +01:00
45 lines
1.3 KiB
Swift
45 lines
1.3 KiB
Swift
// swift-tools-version:5.5
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "bark",
|
|
platforms: [
|
|
.macOS(.v12),
|
|
.iOS(.v14),
|
|
.watchOS(.v4),
|
|
.tvOS(.v14)
|
|
],
|
|
products: [
|
|
.library(name: "bark", targets: ["bark"]),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "bark",
|
|
path: ".",
|
|
sources: [
|
|
"bark.cpp",
|
|
"encodec.cpp",
|
|
"ggml-alloc.c",
|
|
"ggml-backend.c",
|
|
"ggml.c",
|
|
],
|
|
publicHeadersPath: "include",
|
|
cSettings: [
|
|
.unsafeFlags(["-Wno-shorten-64-to-32", "-O3", "-DNDEBUG"]),
|
|
.define("GGML_USE_ACCELERATE"),
|
|
.unsafeFlags(["-fno-objc-arc"]),
|
|
// NOTE: NEW_LAPACK will required iOS version 16.4+
|
|
// We should consider add this in the future when we drop support for iOS 14
|
|
// (ref: ref: https://developer.apple.com/documentation/accelerate/1513264-cblas_sgemm?language=objc)
|
|
// .define("ACCELERATE_NEW_LAPACK"),
|
|
// .define("ACCELERATE_LAPACK_ILP64")
|
|
],
|
|
linkerSettings: [
|
|
.linkedFramework("Accelerate")
|
|
]
|
|
)
|
|
],
|
|
cxxLanguageStandard: .cxx11
|
|
)
|