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.

installConfigHeader

Marks the specified config header for installation alongside this artifact. When a module links with this artifact, all headers marked for installation are added to that module's include search path.

Compile.installConfigHeader
pub fn installConfigHeader(cs: *Compile, config_header: *Step.ConfigHeader) void

File

lib/std/Build/Step/Compile.zig:516

Code

pub fn installConfigHeader(cs: *Compile, config_header: *Step.ConfigHeader) void {
    cs.installHeader(config_header.getOutputFile(), config_header.include_path);
}