mirror of
https://git.adityakumar.xyz/llama.cpp.git
synced 2024-11-09 15:29:43 +00:00
21 lines
464 B
Swift
21 lines
464 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: ".",
|
||
|
sources: ["ggml.c", "llama.cpp"],
|
||
|
publicHeadersPath: "spm-headers",
|
||
|
cSettings: [.unsafeFlags(["-Wno-shorten-64-to-32"])]
|
||
|
),
|
||
|
],
|
||
|
cxxLanguageStandard: .cxx11
|
||
|
)
|