brickworks 0.0.1

Brick Rigs mod loader
1
2
3
4
5
6
7
fn main() {
    let target_os = std::env::var("CARGO_CFG_TARGET_OS").unwrap();
    if target_os == "windows" {
        println!("cargo:rustc-link-lib=kernel32"); 
        println!("cargo:rustc-link-lib=psapi"); 
    }
}