Commit 5ef07302d7
Changed files (1)
lib
std
Build
Step
lib/std/Build/Step/ConfigHeader.zig
@@ -101,6 +101,9 @@ pub fn create(owner: *std.Build, options: Options) *ConfigHeader {
.generated_dir = .{ .step = &config_header.step },
};
+ if (options.style.getPath()) |s| {
+ s.addStepDependencies(&config_header.step);
+ }
return config_header;
}