feat: add file_watcher module
This commit is contained in:
parent
eb77164b13
commit
94cdf4503e
2 changed files with 487 additions and 0 deletions
11
build.zig
11
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 },
|
||||
},
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue