build: update to latest zig master
This commit is contained in:
parent
68a95a4984
commit
15e8cad161
5 changed files with 10 additions and 9 deletions
|
|
@ -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 },
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue