summaryrefslogtreecommitdiff
path: root/build.rs
blob: aa0e144f01afa9a0d6f9e1d7e205a51d737c2031 (plain)
1
2
3
4
5
extern crate pkg_config;

fn main() {
    pkg_config::Config::new().atleast_version("1.6.25").probe("libupnp").unwrap();
}