const std = @import("std"); pub fn build(b: *std.Build) void { // Create the exported module const mod = b.addModule("flanterm", .{ .root_source_file = b.path("src/root.zig"), }); // Add the C source files and includes mod.addIncludePath(b.path("src")); mod.addCSourceFiles(.{ .files = &.{ "src/flanterm.c", "src/flanterm_backends/fb.c", }, }); }