mirror of
https://git.adityakumar.xyz/llama.cpp.git
synced 2024-11-08 15:09:44 +00:00
69b34a0e80
* Ignore metal file in spm * Add ggml.h to spm public Headers --------- Co-authored-by: Vogel Frederik <vogel.frederik@linecorp.com>
24 lines
631 B
Swift
24 lines
631 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"],
|
|
publicHeadersPath: "spm-headers",
|
|
cSettings: [.unsafeFlags(["-Wno-shorten-64-to-32"]), .define("GGML_USE_ACCELERATE")],
|
|
linkerSettings: [
|
|
.linkedFramework("Accelerate")
|
|
]
|
|
),
|
|
],
|
|
cxxLanguageStandard: .cxx11
|
|
)
|