summaryrefslogtreecommitdiffstats
path: root/third_party/rust/encoding_c_mem/build.rs
blob: 962b7ae12bd7fc7f2330cf34826ac41c05ccadaf (plain)
1
2
3
4
5
6
7
fn main() {
    println!("cargo:rerun-if-changed=");

    let cargo_manifest_dir = std::env::var_os("CARGO_MANIFEST_DIR").unwrap();
    let include_dir = std::path::PathBuf::from(cargo_manifest_dir).join("include");
    println!("cargo:include-dir={}", include_dir.display());
}