Function getEmittedBin [src]
Returns the path to the generated executable, library or object file.
To run an executable built with zig build, use run, or create an install step and invoke it.
Prototype
pub fn getEmittedBin(compile: *Compile) LazyPath Parameters
compile: *Compile Source
pub fn getEmittedBin(compile: *Compile) LazyPath {
return compile.getEmittedFileGeneric(&compile.generated_bin);
}