Function addSystemFrameworkPath [src]
Prototype
pub fn addSystemFrameworkPath(translate_c: *TranslateC, directory_path: LazyPath) void
Parameters
translate_c: *TranslateC
directory_path: LazyPath
Source
pub fn addSystemFrameworkPath(translate_c: *TranslateC, directory_path: LazyPath) void {
const b = translate_c.step.owner;
translate_c.include_dirs.append(.{ .framework_path_system = directory_path.dupe(b) }) catch
@panic("OOM");
directory_path.addStepDependencies(&translate_c.step);
}