Function isDynamicLibrary [src]
Prototype
pub fn isDynamicLibrary(compile: *const Compile) bool Parameters
compile: *const Compile Source
pub fn isDynamicLibrary(compile: *const Compile) bool {
return compile.kind == .lib and compile.linkage == .dynamic;
}