rendr 0.3.2

A project scaffolding tool
Documentation
1
2
3
4
5
6
7
8
9
use std::env;

pub fn main() {
    if let Ok(profile) = env::var("PROFILE") {
        if profile == "debug" {
            println!("cargo:rustc-cfg=debug");
        }
    }
}