Documentation
1
2
3
4
5
pub fn main() {
    if let Ok(profile) = std::env::var("PROFILE") {
        println!("cargo:rustc-cfg={}", profile);
    }
}