quickcfg 0.6.3

Do basic configuration of a system, declaratively and quickly.
Documentation
1
2
3
4
5
6
7
8
9
10
11
fn main() {
    platform();
}

#[cfg(windows)]
fn platform() {
    println!("cargo:rustc-link-lib=msi");
}

#[cfg(not(windows))]
fn platform() {}