Function systemIntegrationOption [src]

Prototype

pub fn systemIntegrationOption( b: *Build, name: []const u8, config: SystemIntegrationOptionConfig, ) bool

Parameters

b: *Buildname: []const u8config: SystemIntegrationOptionConfig

Source

pub fn systemIntegrationOption( b: *Build, name: []const u8, config: SystemIntegrationOptionConfig, ) bool { const gop = b.graph.system_library_options.getOrPut(b.allocator, name) catch @panic("OOM"); if (gop.found_existing) switch (gop.value_ptr.*) { .user_disabled => { gop.value_ptr.* = .declared_disabled; return false; }, .user_enabled => { gop.value_ptr.* = .declared_enabled; return true; }, .declared_disabled => return false, .declared_enabled => return true, } else { gop.key_ptr.* = b.dupe(name); if (config.default orelse b.graph.system_package_mode) { gop.value_ptr.* = .declared_enabled; return true; } else { gop.value_ptr.* = .declared_disabled; return false; } } }