Function installArtifact [src]

This creates the install step and adds it to the dependencies of the top-level install step, using all the default options. See addInstallArtifact for a more flexible function.

Prototype

pub fn installArtifact(b: *Build, artifact: *Step.Compile) void

Parameters

b: *Buildartifact: *Step.Compile

Source

pub fn installArtifact(b: *Build, artifact: *Step.Compile) void { b.getInstallStep().dependOn(&b.addInstallArtifact(artifact, .{}).step); }