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