rovella 0.1.6

A game library that, at present, only consists of a windowing and events wrapper
1
2
3
4
5
6
7
8
9
10
11
#[cfg(target_os = "linux")]
fn main() {
    for lib in &["X11", "xcb", "X11-xcb", "Xau", "Xdmcp"] {
        println!("cargo:rustc-link-lib=static={}", lib);
    }
}

#[cfg(target_os = "windows")]
fn main() {

}