diff options
author | Jed Fox <git@jedfox.com> | 2023-03-28 11:39:01 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-28 19:39:01 +0300 |
commit | 20e1e84884376b3fb44ffbfd48d478b2934b0b5e (patch) | |
tree | 817c4973a1e38682a4aa6bf679cb928865cd5169 | |
parent | c1f885067c61191a07a1aedf684168dda62f3f71 (diff) |
deploy : add a Package.swift for SwiftPM support (#393)
* Add a Package.swift for SwiftPM support
* Swap from exclusions to allowlist
-rw-r--r-- | .gitignore | 5 | ||||
-rw-r--r-- | Package.swift | 20 | ||||
l--------- | spm-headers/llama.h | 1 |
3 files changed, 26 insertions, 0 deletions
@@ -5,6 +5,7 @@ .vscode/ .DS_Store +.build/ build/ build-em/ build-debug/ @@ -27,3 +28,7 @@ compile_commands.json .envrc .direnv/ + +.venv +__pycache__ +.swiftpm diff --git a/Package.swift b/Package.swift new file mode 100644 index 0000000..79d13c8 --- /dev/null +++ b/Package.swift @@ -0,0 +1,20 @@ +// 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 +) diff --git a/spm-headers/llama.h b/spm-headers/llama.h new file mode 120000 index 0000000..9acceb9 --- /dev/null +++ b/spm-headers/llama.h @@ -0,0 +1 @@ +../llama.h
\ No newline at end of file |