Skip to content

Commit efc9167

Browse files
authored
integrate with new zig module system (#10)
1 parent f25b31c commit efc9167

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

build.zig

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
const std = @import("std");
2+
3+
pub fn build(b: *std.Build) void {
4+
b.addModule(.{
5+
.name = "diffz",
6+
.source_file = .{ .path = "DiffMatchPatch.zig" },
7+
});
8+
}

0 commit comments

Comments
 (0)