Function addIncludePath [src]

Prototype

pub fn addIncludePath(m: *Module, lazy_path: LazyPath) void

Parameters

m: *Modulelazy_path: LazyPath

Source

pub fn addIncludePath(m: *Module, lazy_path: LazyPath) void { const b = m.owner; m.include_dirs.append(b.allocator, .{ .path = lazy_path.dupe(b) }) catch @panic("OOM"); }