pub fn create(owner: *std.Build) *Options
pub fn create(owner: *std.Build) *Options { const graph = owner.graph; const arena = graph.arena; const options = arena.create(Options) catch @panic("OOM"); options.* = .{ .step = .init(.{ .tag = base_tag, .name = "options", .owner = owner, }), .generated_file = graph.addGeneratedFile(&options.step), .encountered_types = .empty, }; return options; }