authorgravatar for tristan.ross@midstall.comTristan Ross <tristan.ross@midstall.com> 2024-04-19 21:23:22-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2025-07-17 05:20:24+02:00
log5ef07302d7c22ae53594e34524bd02da4cc36f1b
tree5534257ec975996e7b0d546e7712d326e0ae1424
parent680358767e30ac386e6727ffc9295820c598d6b9

std.Build.Step.ConfigHeader: add the lazy file styled input as a dependency


1 files changed, 3 insertions(+), 0 deletions(-)

lib/std/Build/Step/ConfigHeader.zig+3
......@@ -101,6 +101,9 @@ pub fn create(owner: *std.Build, options: Options) *ConfigHeader {
101101 .generated_dir = .{ .step = &config_header.step },
102102 };
103103
104 if (options.style.getPath()) |s| {
105 s.addStepDependencies(&config_header.step);
106 }
104107 return config_header;
105108}
106109