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.

Fail.zig

Fail the build with a given message.

File

Code

//! Fail the build with a given message.
const Fail = @This();

const std = @import("std");
const Step = std.Build.Step;
const Configuration = std.Build.Configuration;

step: Step,
error_msg: Configuration.String,

pub const base_tag: Step.Tag = .fail;

pub fn create(owner: *std.Build, error_msg: []const u8) *Fail {
    const graph = owner.graph;
    const fail = graph.create(Fail);
    fail.* = .{
        .step = .init(.{
            .tag = base_tag,
            .name = "fail",
            .owner = owner,
        }),
        .error_msg = graph.addString(error_msg),
    };
    return fail;
}