Function addDepFileOutputArg [src]
Add a path argument to a dep file (.d) for the child process to write its
discovered additional dependencies.
Only one dep file argument is allowed by instance.
Prototype
pub fn addDepFileOutputArg(run: *Run, basename: []const u8) std.Build.LazyPath
Parameters
run: *Run
basename: []const u8
Source
pub fn addDepFileOutputArg(run: *Run, basename: []const u8) std.Build.LazyPath {
return run.addPrefixedDepFileOutputArg("", basename);
}