zng-wgt-inspector 0.3.3

Part of the zng project.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
fn main() {
    macro_rules! enable {
        ($feature:tt) => {
            if !cfg!(feature = $feature) {
                println!(concat!("cargo:rustc-cfg=feature=\"", $feature, "\""))
            }
        };
    }

    if cfg!(debug_assertions) && cfg!(feature = "debug_default") {
        enable!("live");
    }
}