Function addRPath [src]
Prototype
pub fn addRPath(m: *Module, directory_path: LazyPath) void
Parameters
m: *Module
directory_path: LazyPath
Source
pub fn addRPath(m: *Module, directory_path: LazyPath) void {
const b = m.owner;
m.rpaths.append(b.allocator, .{ .lazy_path = directory_path.dupe(b) }) catch @panic("OOM");
}