flow-themes/src/build-dest.zig

14 lines
358 B
Zig

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