mirror of
https://git.adityakumar.xyz/llama.cpp.git
synced 2024-11-08 15:09:44 +00:00
20e1e84884
* Add a Package.swift for SwiftPM support * Swap from exclusions to allowlist
20 lines
464 B
Swift
20 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
|
|
)
|