Function addInstallArtifact [src]

This merely creates the step; it does not add it to the dependencies of the top-level install step.

Prototype

pub fn addInstallArtifact( b: *Build, artifact: *Step.Compile, options: Step.InstallArtifact.Options, ) *Step.InstallArtifact

Parameters

b: *Buildartifact: *Step.Compileoptions: Step.InstallArtifact.Options

Source

pub fn addInstallArtifact( b: *Build, artifact: *Step.Compile, options: Step.InstallArtifact.Options, ) *Step.InstallArtifact { return Step.InstallArtifact.create(b, artifact, options); }