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

Create a set of key-value pairs that can be converted into a Zig source file and then inserted into a Zig compilation's module table for importing.

This provides a way to expose build.zig values to Zig source code with @import. Related: Module.addOptions.

Build.addOptions
pub fn addOptions(b: *Build) *Step.Options

File

lib/std/Build.zig:706

Code

pub fn addOptions(b: *Build) *Step.Options {
    return Step.Options.create(b);
}