Function addLibDir [src]
Prototype
pub fn addLibDir(self: *NativePaths, s: []const u8) !void
Parameters
self: *NativePaths
s: []const u8
Source
pub fn addLibDir(self: *NativePaths, s: []const u8) !void {
try self.lib_dirs.append(self.arena, s);
}