This merely creates the step; it does not add it to the dependencies of the top-level install step.
pub fn addInstallArtifact(
b: *Build,
artifact: *Step.Compile,
options: Step.InstallArtifact.Options,
) *Step.InstallArtifact
pub fn addInstallArtifact(
b: *Build,
artifact: *Step.Compile,
options: Step.InstallArtifact.Options,
) *Step.InstallArtifact {
return Step.InstallArtifact.create(b, artifact, options);
}