diff options
author | Martin Ashby <martin@ashbysoft.com> | 2024-02-01 14:17:55 +0000 |
---|---|---|
committer | Martin Ashby <martin@ashbysoft.com> | 2024-02-01 14:17:55 +0000 |
commit | c99cb339e87b28d937899f9561f106968772ee0c (patch) | |
tree | 4b05c8de6bcb4288fa45bc0d820f17ce335acadc /build.zig | |
parent | 4654a36fa71154bb38404ea7191efc5963db9d0f (diff) | |
download | smtp-zig-c99cb339e87b28d937899f9561f106968772ee0c.tar.gz smtp-zig-c99cb339e87b28d937899f9561f106968772ee0c.tar.bz2 smtp-zig-c99cb339e87b28d937899f9561f106968772ee0c.tar.xz smtp-zig-c99cb339e87b28d937899f9561f106968772ee0c.zip |
Update for zig master
Diffstat (limited to 'build.zig')
-rw-r--r-- | build.zig | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -11,7 +11,7 @@ pub fn build(b: *std.Build) void { .optimize = optimize, }); b.installArtifact(lib); - _ = b.addModule("smtp", .{ .source_file = .{ .path = "src/main.zig" } }); + _ = b.addModule("smtp", .{ .root_source_file = .{ .path = "src/main.zig" } }); const main_tests = b.addTest(.{ .root_source_file = .{ .path = "src/main.zig" }, |