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