Initial release
This commit is contained in:
parent
0227a6b412
commit
142d718dcb
12 changed files with 2685 additions and 0 deletions
14
src/build-dest.zig
Normal file
14
src/build-dest.zig
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
const std = @import("std");
|
||||
|
||||
pub fn build(b: *std.Build) void {
|
||||
const theme_mod = b.addModule("theme", .{
|
||||
.root_source_file = .{ .path = "src/theme.zig" },
|
||||
});
|
||||
|
||||
_ = b.addModule("themes", .{
|
||||
.root_source_file = .{ .path = "src/themes.zig" },
|
||||
.imports = &.{
|
||||
.{ .name = "theme", .module = theme_mod },
|
||||
},
|
||||
});
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue