rust/build.rs

9 lines
253 B
Rust
Raw Normal View History

use std::env;
fn main() {
// Forward the profile to the main compilation
println!("cargo:rustc-env=PROFILE={}", env::var("PROFILE").unwrap());
2017-08-09 11:05:34 -05:00
// Don't rebuild miri even if nothing changed
println!("cargo:rerun-if-changed=build.rs");
}