summaryrefslogtreecommitdiffstats
path: root/third_party/rust/neqo-common/build.rs
blob: 0af1a1dbbdd4fc27fbc06b150d54805a0826da6d (plain)
1
2
3
4
5
6
7
8
use std::env;

fn main() {
    let target = env::var("TARGET").unwrap();
    if target.contains("windows") {
        println!("cargo:rustc-link-lib=winmm");
    }
}