Zig 0.17.0-dev (Split by item)

This is an example of documentation generated by ZigDoc, an alternative to Zig's built-in Auto Doc feature. See also examples in other modes/formats. The project being documented here (as the example) is the Zig library itself.

addOptions

Converts a set of key-value pairs into a Zig source file, and then inserts it into the Module's import table with the specified name. This makes the options importable via @import("module_name").

Module.addOptions
pub fn addOptions(m: *Module, module_name: []const u8, options: *Step.Options) void

File

lib/std/Build/Module.zig:318

Code

pub fn addOptions(m: *Module, module_name: []const u8, options: *Step.Options) void {
    addImport(m, module_name, options.createModule());
}