unionstd.Build.InstallDir[src]

Fields

prefix: void
lib: void
bin: void
header: void
custom: []const u8

A path relative to the prefix

Functions

Functiondupe[src]

pub fn dupe(dir: InstallDir, builder: *Build) InstallDir

Duplicates the install directory including the path if set to custom.

Parameters

builder: *Build

Source Code

Source code
pub fn dupe(dir: InstallDir, builder: *Build) InstallDir {
    if (dir == .custom) {
        return .{ .custom = builder.dupe(dir.custom) };
    } else {
        return dir;
    }
}

Source Code

Source code
pub const InstallDir = union(enum) {
    prefix: void,
    lib: void,
    bin: void,
    header: void,
    /// A path relative to the prefix
    custom: []const u8,

    /// Duplicates the install directory including the path if set to custom.
    pub fn dupe(dir: InstallDir, builder: *Build) InstallDir {
        if (dir == .custom) {
            return .{ .custom = builder.dupe(dir.custom) };
        } else {
            return dir;
        }
    }
}