Function addRPath [src]

Prototype

pub fn addRPath(m: *Module, directory_path: LazyPath) void

Parameters

m: *Moduledirectory_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"); }