pub fn create(owner: *std.Build) *WriteFile
pub fn create(owner: *std.Build) *WriteFile { const graph = owner.graph; const wf = graph.create(WriteFile); wf.* = .{ .step = .init(.{ .tag = base_tag, .name = "WriteFile", .owner = owner, }), .generated_directory = graph.addGeneratedFile(&wf.step), }; return wf; }