mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2024-11-13 14:29:52 +00:00
34 lines
831 B
Swift
34 lines
831 B
Swift
// swift-tools-version:5.3
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "llama",
|
|
products: [
|
|
.library(name: "llama", targets: ["llama"]),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "llama",
|
|
path: ".",
|
|
exclude: ["ggml-metal.metal"],
|
|
sources: [
|
|
"ggml.c",
|
|
"llama.cpp",
|
|
"ggml-alloc.c",
|
|
"k_quants.c"
|
|
],
|
|
publicHeadersPath: "spm-headers",
|
|
cSettings: [
|
|
.unsafeFlags(["-Wno-shorten-64-to-32"]),
|
|
.define("GGML_USE_K_QUANTS"),
|
|
.define("GGML_USE_ACCELERATE")
|
|
],
|
|
linkerSettings: [
|
|
.linkedFramework("Accelerate")
|
|
]
|
|
),
|
|
],
|
|
cxxLanguageStandard: .cxx11
|
|
)
|