build: check add missing imports
All checks were successful
Zig Project Action / Lint, Spell-check and test zig project (push) Successful in 54s

This commit is contained in:
2024-11-19 22:03:56 +01:00
parent 8ee3bd7dbc
commit 1b8b3023c5

View File

@@ -88,6 +88,8 @@ pub fn build(b: *std.Build) void {
.target = target, .target = target,
.optimize = optimize, .optimize = optimize,
}); });
exe_check.root_module.addImport("interface", interface.module("interface"));
exe_check.root_module.addImport("code_point", zg.module("code_point"));
const check = b.step("check", "Check if project compiles"); const check = b.step("check", "Check if project compiles");
check.dependOn(&exe_check.step); check.dependOn(&exe_check.step);