Function addNamedLazyPath [src]
Prototype
pub fn addNamedLazyPath(b: *Build, name: []const u8, lp: LazyPath) void
Parameters
b: *Build
name: []const u8
lp: LazyPath
Source
pub fn addNamedLazyPath(b: *Build, name: []const u8, lp: LazyPath) void {
b.named_lazy_paths.put(b.dupe(name), lp.dupe(b)) catch @panic("OOM");
}