| ... | ... | @@ -199,11 +199,11 @@ pub fn addOptionArtifact(self: *OptionsStep, name: []const u8, artifact: *LibExe |
| 199 | 199 | self.step.dependOn(&artifact.step); |
| 200 | 200 | } |
| 201 | 201 | |
| 202 | | pub fn getPackage(self: OptionsStep, package_name: []const u8) build.Pkg { |
| 202 | pub fn getPackage(self: *OptionsStep, package_name: []const u8) build.Pkg { |
| 203 | 203 | return .{ .name = package_name, .path = self.getSource() }; |
| 204 | 204 | } |
| 205 | 205 | |
| 206 | | pub fn getSource(self: OptionsStep) FileSource { |
| 206 | pub fn getSource(self: *OptionsStep) FileSource { |
| 207 | 207 | return .{ .generated = &self.generated_file }; |
| 208 | 208 | } |
| 209 | 209 | |