pub fn get_lib_filename(name: &str, kind: &str) -> StringExpand description
Get the filename for a library.
kind should be one of:
librlibstaticlibdylibproc-macro
ยงExamples
get_lib_filename("foo", "dylib");would return:
- macOS:
"libfoo.dylib" - Windows:
"foo.dll" - Unix:
"libfoo.so"