rust/build.rs
Oliver Schneider 4ce60abd84 Update build.rs
2017-08-09 18:05:34 +02:00

9 lines
253 B
Rust

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