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) }; }