gdk-sys 0.1.1

FFI bindings to GDK
1
2
3
4
5
6
7
8
extern crate pkg_config;

fn main() {
    match pkg_config::find_library("gdk-3.0") {
        Ok(_) => {},
        Err(e) => panic!("{}", e)
    };
}