flow-themes/src/build-dest.zig
2024-02-07 21:49:37 +01:00

14 lines
368 B
Zig

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 },
},
});
}