build: update to latest zig master

This commit is contained in:
CJ van den Berg 2024-06-04 22:16:04 +02:00
parent 68a95a4984
commit 15e8cad161
5 changed files with 10 additions and 9 deletions

View file

@ -2,11 +2,11 @@ const std = @import("std");
pub fn build(b: *std.Build) void {
const theme_mod = b.addModule("theme", .{
.root_source_file = .{ .path = "src/theme.zig" },
.root_source_file = b.path("src/theme.zig"),
});
_ = b.addModule("themes", .{
.root_source_file = .{ .path = "src/themes.zig" },
.root_source_file = b.path("src/themes.zig"),
.imports = &.{
.{ .name = "theme", .module = theme_mod },
},