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