blob: 463a38007ee5bcee1865411ad9c22b5dd8cf8877 (
plain)
1
2
3
4
5
6
7
|
extern crate pkg_config;
fn main() {
// See https://github.com/joshtriplett/metadeps/issues/9 for why we don't use
// metadeps here, but instead keep this manually in sync with Cargo.toml.
pkg_config::Config::new().atleast_version("1.6").probe("dbus-1").unwrap();
}
|