[][src]Function jerk_build::metabuild

pub fn metabuild()

A cargo metabuild compatible entry point.

To consume via build.rs

Add the following to your executable's Cargo.toml:

[build-dependencies]
jerk = "0.1"

And the following to your build.rs:

fn main() {
    jerk_build::metabuild();
}

To consume via metabuild (nightly only)

Add the following to your executable's Cargo.toml:

cargo-features = ["metabuild"]
 
[package]
metabuild = ["jerk"]
 
[build-dependencies]
jerk = "0.1"