fenster-sys 0.1.0

Rust raw bindings to zserge/fenster
Documentation
1
2
3
4
5
6
7
8
9
10
fn main() {
    cc::Build::new()
        .include("fenster")
        .file("src/wrapper.c")
        .compile("fenster");

    println!("cargo::rerun-if-changed=src/wrapper.c");
    println!("cargo::rustc-link-lib=user32");
    println!("cargo::rustc-link-lib=gdi32");
}