diff options
author | Martin Ashby <martin@ashbysoft.com> | 2024-02-01 14:12:03 +0000 |
---|---|---|
committer | Martin Ashby <martin@ashbysoft.com> | 2024-02-01 14:12:03 +0000 |
commit | c0b0b259a572bcc65dd2e6d55a126ead9c2ae6ff (patch) | |
tree | fa12113b6466c5dff14596a7b7bbdb34590ad6ff /build.zig | |
parent | a782c7083056558ccfe41ca42857a4680d55a9d9 (diff) | |
download | zigwebserver-c0b0b259a572bcc65dd2e6d55a126ead9c2ae6ff.tar.gz zigwebserver-c0b0b259a572bcc65dd2e6d55a126ead9c2ae6ff.tar.bz2 zigwebserver-c0b0b259a572bcc65dd2e6d55a126ead9c2ae6ff.tar.xz zigwebserver-c0b0b259a572bcc65dd2e6d55a126ead9c2ae6ff.zip |
Update for zig master
Diffstat (limited to 'build.zig')
-rw-r--r-- | build.zig | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -33,7 +33,7 @@ pub fn build(b: *std.Build) void { b.installArtifact(lib); // for zig module system - _ = b.addModule("zigwebserver", .{ .source_file = .{ .path = "src/zigwebserver.zig" } }); + _ = b.addModule("zigwebserver", .{ .root_source_file = .{ .path = "src/zigwebserver.zig" } }); // This declares intent for the executable to be installed into the // standard location when the user invokes the "install" step (the default |