sharedlib 6.0.0

A cross-platform shared library loader.
Documentation
1
2
3
4
5
6
7
8
#[cfg(all(unix, not(target_os="macos")))]
pub const EXAMPLELIB: &'static str = "test/.build/libexamplelib.so";

#[cfg(all(unix, target_os="macos"))]
pub const EXAMPLELIB: &'static str = "test/.build/libexamplelib.dylib";

#[cfg(windows)]
pub const EXAMPLELIB: &'static str = "test/.build/examplelib.dll";