Function addSystemIncludePath [src]

Prototype

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

Parameters

m: *Modulelazy_path: LazyPath

Source

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