diff options
author | Martin Ashby <martin@ashbysoft.com> | 2023-08-28 09:26:48 +0100 |
---|---|---|
committer | Martin Ashby <martin@ashbysoft.com> | 2023-08-28 09:26:48 +0100 |
commit | aab9e2bf9528098c1c229afe8c6325d5856b1a0e (patch) | |
tree | 506c11aab77aa6e077248d95106cd24f1836ae31 | |
parent | e3d196387e299f0adfc2149d1b3756e1f9137939 (diff) | |
download | smtp-zig-aab9e2bf9528098c1c229afe8c6325d5856b1a0e.tar.gz smtp-zig-aab9e2bf9528098c1c229afe8c6325d5856b1a0e.tar.bz2 smtp-zig-aab9e2bf9528098c1c229afe8c6325d5856b1a0e.tar.xz smtp-zig-aab9e2bf9528098c1c229afe8c6325d5856b1a0e.zip |
Fix 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", .{ .source_file = .{ .path = "src/main.zig" } }); const main_tests = b.addTest(.{ .root_source_file = .{ .path = "src/main.zig" }, |