A wrapper for build.rs instructions
Add this to your Cargo.toml
:
toml
[build-dependencies]
build_script = "0.1.0"
```rust use buildscript::{cargorustclinklib, cargorustclink_search, BuildScript, Instruction, Value};
fn main() {
// basic instructions
buildscript::cargorerunifchanged("something.txt");
buildscript::cargorerunifenvchanged("PKGCONFIG");
buildscript::cargorustclinklib("somelibrary");
buildscript::cargorustclinklibmapping(cargorustclinklib::Kind::DynamicLibrary, "somelibrary");
buildscript::cargorustclinksearch("something-else.txt");
buildscript::cargorustclinksearchmapping(cargorustclinksearch::Kind::Crate, "something-else.txt");
buildscript::cargorustcflags("-l ffi");
buildscript::cargorustccfg("key");
buildscript::cargorustccfgmapping("key", "value");
buildscript::cargorustcenv("var", "value");
buildscript::cargorustccdyliblinkarg("flag");
buildscript::cargomapping("key", "value");
// other, advanced instructions
let mut build_script = BuildScript::default();
let instruction = {
let value = Value::Singular("something".into());
Instruction::new("instruction", value)
};
// add a custom instruction to the instruction stack
build_script.custom_instruction(instruction);
// write all instructions to something (for this scenario, and also usually, its stdout)
build_script.build();
} ```
For more information see the documentation.