Add the crate to your build-dependencies, in your build.rs
, call metabuild()
.
toml
[build-dependencies]
cdylib-link-lines = "0.1"
rust
fn main() {
cdylib_link_lines::metabuild();
}
If you are using the metabuild
unstable feature
``` toml cargo-features = ["metabuild"]
[package] name = "mypackage" ... metabuild = ["cdylib-link-lines"]
[build-dependencies] cdylib-link-lines = "0.1" ```
Helper spun off crav1e, contains code written by Luca Barbato and Derek Buitenhuis. Synchronized with the cargo-c 0.9 logic thanks to Ivan Enderlin.