From a456f138f46bac5e0f43d1165f23816b8d250bcb Mon Sep 17 00:00:00 2001 From: Martin Ashby Date: Fri, 24 May 2024 11:40:30 +0100 Subject: [PATCH] Update build.zig for breaking change in latest zig master https://github.com/ziglang/zig/pull/19597 --- build.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.zig b/build.zig index 3210045..2264921 100644 --- a/build.zig +++ b/build.zig @@ -10,7 +10,7 @@ pub fn build(b: *std.Build) void { }); _ = b.addModule("syntax", .{ - .root_source_file = .{ .path = "src/syntax.zig" }, + .root_source_file = b.path("src/syntax.zig"), .imports = &.{ .{ .name = "treez", .module = tree_sitter_dep.module("treez") }, ts_queryfile(b, tree_sitter_dep, "tree-sitter-agda/queries/highlights.scm"),