Function installConfigHeader [src]
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.
Prototype
pub fn installConfigHeader(cs: *Compile, config_header: *Step.ConfigHeader) void
Parameters
cs: *Compile
config_header: *Step.ConfigHeader
Source
pub fn installConfigHeader(cs: *Compile, config_header: *Step.ConfigHeader) void {
cs.installHeader(config_header.getOutput(), config_header.include_path);
}