We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31aea56 commit 9fcf1d1Copy full SHA for 9fcf1d1
Package.swift
@@ -18,16 +18,17 @@ let package = Package(
18
name: "whisper",
19
path: ".",
20
exclude: [
21
+ "build",
22
"bindings",
23
"cmake",
- "coreml",
24
"examples",
25
- "extra",
+ "scripts",
26
"models",
27
"samples",
28
"tests",
29
"CMakeLists.txt",
30
- "Makefile"
+ "Makefile",
31
+ "ggml/src/ggml-metal-embed.metal"
32
],
33
sources: [
34
"ggml/src/ggml.c",
@@ -38,7 +39,7 @@ let package = Package(
38
39
"ggml/src/ggml-quants.c",
40
"ggml/src/ggml-metal.m"
41
- resources: [.process("ggml-metal.metal")],
42
+ resources: [.process("ggml/src/ggml-metal.metal")],
43
publicHeadersPath: "spm-headers",
44
cSettings: [
45
.unsafeFlags(["-Wno-shorten-64-to-32", "-O3", "-DNDEBUG"]),
0 commit comments