buildrs_playground 0.0.2

Just a playground for build.rs
Documentation
1
2
3
4
5
6
7
8
extern crate autocfg;

fn main(){
    let some_string = String::from(format!("cargo:warning={}", file!()));
    println!("{}", some_string);

    autocfg::rerun_path(file!());
}