Function pathFromRoot [src]
This is low-level implementation details of the build system, not meant to
be called by users' build scripts. Even in the build system itself it is a
code smell to call this function.
Prototype
pub fn pathFromRoot(b: *Build, sub_path: []const u8) []u8
Parameters
b: *Build
sub_path: []const u8
Source
pub fn pathFromRoot(b: *Build, sub_path: []const u8) []u8 {
return b.pathResolve(&.{ b.build_root.path orelse ".", sub_path });
}