fix: check target missing color module

This commit is contained in:
CJ van den Berg 2025-02-12 18:17:43 +01:00
parent 9f2e3bf4b4
commit fb5cd46d0b
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

@ -552,6 +552,7 @@ pub fn build_exe(
check_exe.root_module.addImport("renderer", renderer_mod); check_exe.root_module.addImport("renderer", renderer_mod);
check_exe.root_module.addImport("input", input_mod); check_exe.root_module.addImport("input", input_mod);
check_exe.root_module.addImport("syntax", syntax_mod); check_exe.root_module.addImport("syntax", syntax_mod);
check_exe.root_module.addImport("color", color_mod);
check_exe.root_module.addImport("version_info", b.createModule(.{ .root_source_file = version_info_file })); check_exe.root_module.addImport("version_info", b.createModule(.{ .root_source_file = version_info_file }));
check_step.dependOn(&check_exe.step); check_step.dependOn(&check_exe.step);