rust-clippy/build.rs

8 lines
283 B
Rust
Raw Permalink Normal View History

2017-09-18 10:47:33 +00:00
fn main() {
2018-05-13 08:11:52 +00:00
// Forward the profile to the main compilation
println!("cargo:rustc-env=PROFILE={}", std::env::var("PROFILE").unwrap());
2018-05-13 08:11:52 +00:00
// Don't rebuild even if nothing changed
println!("cargo:rerun-if-changed=build.rs");
rustc_tools_util::setup_version_info!();
2018-05-13 08:11:52 +00:00
}