Function getEmittedImplib [src]

Returns the path to the generated import library. This function can only be called for libraries.

Prototype

pub fn getEmittedImplib(compile: *Compile) LazyPath

Parameters

compile: *Compile

Source

pub fn getEmittedImplib(compile: *Compile) LazyPath { assert(compile.kind == .lib); return compile.getEmittedFileGeneric(&compile.generated_implib); }