diff --git a/build.zig b/build.zig index 8d3c126..c6469fc 100644 --- a/build.zig +++ b/build.zig @@ -604,6 +604,16 @@ pub fn build_exe( }, }); + const file_watcher_mod = b.createModule(.{ + .root_source_file = b.path("src/file_watcher.zig"), + .imports = &.{ + .{ .name = "soft_root", .module = soft_root_mod }, + .{ .name = "log", .module = log_mod }, + .{ .name = "cbor", .module = cbor_mod }, + .{ .name = "thespian", .module = thespian_mod }, + }, + }); + const project_manager_mod = b.createModule(.{ .root_source_file = b.path("src/project_manager.zig"), .imports = &.{ @@ -619,6 +629,7 @@ pub fn build_exe( .{ .name = "fuzzig", .module = fuzzig_dep.module("fuzzig") }, .{ .name = "git", .module = git_mod }, .{ .name = "VcsStatus", .module = VcsStatus_mod }, + .{ .name = "file_watcher", .module = file_watcher_mod }, }, });