Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update build.zig
  • Loading branch information
xabi authored Sep 12, 2023
commit d41ddcc7ee2e65f34ae1e08060666d226c1ecc70
4 changes: 2 additions & 2 deletions build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ pub fn build(b: *std.Build) void {
.target = target,
.optimize = optimize,
});
exe.addIncludePath("./thirdparty/ggml/include");
exe.addIncludePath("./thirdparty/ggml/include/ggml");
exe.addIncludePath(.{ .path = "./thirdparty/ggml/include"});
exe.addIncludePath(.{ .path = "./thirdparty/ggml/include/ggml" });
exe.addCSourceFiles(&.{
"./thirdparty/ggml/src/ggml.c",
}, &.{"-std=c11"});
Expand Down