Function addInstallBinFile [src]
dest_rel_path is relative to bin path
Prototype
pub fn addInstallBinFile(b: *Build, source: LazyPath, dest_rel_path: []const u8) *Step.InstallFile
Parameters
b: *Build
source: LazyPath
dest_rel_path: []const u8
Source
pub fn addInstallBinFile(b: *Build, source: LazyPath, dest_rel_path: []const u8) *Step.InstallFile {
return b.addInstallFileWithDir(source, .bin, dest_rel_path);
}