build_script_directives 0.1.0

Macro helpers for emitting Cargo build script instructions
Documentation
1
2
3
4
5
6
7
8
#[macro_export]
macro_rules! cmd {
        ($($arg:tt)+) => {{
            println!(
                "cargo:{}", format!($($arg)+)
            );
        }};
    }