summaryrefslogtreecommitdiffstats
path: root/vendor/libnghttp2-sys/build.rs
blob: e0f5612bd4d09d1fae723287de1ad71a46065bf9 (plain)
1
2
3
4
5
6
7
extern crate pkg_config;

pub fn main() {
    if pkg_config::probe_library("libnghttp2").is_ok() {
        return;
    }
}