Function addModule [src]

This function creates a module and adds it to the package's module set, making it available to other packages which depend on this one. createModule can be used instead to create a private module.

Prototype

pub fn addModule(b: *Build, name: []const u8, options: Module.CreateOptions) *Module

Parameters

b: *Buildname: []const u8options: Module.CreateOptions

Source

pub fn addModule(b: *Build, name: []const u8, options: Module.CreateOptions) *Module { const module = Module.create(b, options); b.modules.put(b.dupe(name), module) catch @panic("OOM"); return module; }