Function addFrameworkPath [src]

Prototype

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

Parameters

m: *Moduledirectory_path: LazyPath

Source

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