addIncludeDirFmt
Function parameters
Parameters
- self:*NativePaths
- fmt:[]const u8
- args:anytype
Functions in this namespace
Functions
Source
Implementation
pub fn addIncludeDirFmt(self: *NativePaths, comptime fmt: []const u8, args: anytype) !void {
const item = try std.fmt.allocPrint(self.arena, fmt, args);
try self.include_dirs.append(self.arena, item);
}