2 releases
Uses old Rust 2015
0.1.1 | Aug 11, 2017 |
---|---|
0.1.0 | Aug 4, 2017 |
#559 in Compression
257 downloads per month
Used in redirectionio
7KB
libtool-rs
build script helper to automatically generate libtool convenience library (.la) files.
lib.rs
:
This library can help you generate libtool archive files to link with existing C library.
Add this to Config.toml
[package]
build = "build.rs"
[build-dependencies]
libtool = "0.1"
And the build.rs file
extern crate libtool;
fn main() {
libtool::generate_convenience_lib("libfoo").unwrap();
}
It will automatically generate the file target/{profile}/libfoo.la