From 572487bcd538a7e602a39f13dba3a24fbf58b2ed Mon Sep 17 00:00:00 2001 From: Karl Seguin Date: Sat, 6 Jan 2024 09:52:47 +0800 Subject: [PATCH] accomodate zig's latest breaking changes --- build.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.zig b/build.zig index 494d535..30b290b 100644 --- a/build.zig +++ b/build.zig @@ -8,7 +8,7 @@ pub fn build(b: *std.Build) !void { const sqlite3_build = b.option([]const []const u8, "sqlite3", "options to use when compiling sqlite3") orelse &default_sqlite3_build; _ = b.addModule("zqlite", .{ - .source_file = .{ .path = "zqlite.zig" }, + .root_source_file = .{ .path = "zqlite.zig" }, }); const lib_test = b.addTest(.{