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