forked from mirrors/gecko-dev
This change is for Rust embedders of SpiderMonkey and should not be a material change for Gecko. Differential Revision: https://phabricator.services.mozilla.com/D49959 --HG-- extra : moz-landing-system : lando
7 lines
279 B
Rust
7 lines
279 B
Rust
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());
|
|
}
|