Functions§
- build_
native_ dynamic_ lib - Builds a dynamic lib. The filename is computed in a target-dependent manner, relying on
std::env::consts::DLL_PREFIX
andstd::env::consts::DLL_EXTENSION
. - build_
native_ static_ lib - Builds a static lib (
.lib
on Windows MSVC and.a
for the rest) with the given name. Built from a C file. - build_
native_ static_ lib_ cxx - Builds a static lib (
.lib
on Windows MSVC and.a
for the rest) with the given name. Built from a C++ file. - build_
native_ 🔒static_ lib_ internal - build_
native_ static_ lib_ optimized - Builds an optimized static lib (
.lib
on Windows MSVC and.a
for the rest) with the given name. Built from a C file.