cpreprocess 1.0.2

Procedural macro that runs a C preprocessor on the input
Documentation
1
2
3
4
5
6
7
8
9
10
11
fn main() {
	println!(
		"cargo:rustc-env=TARGET={}",
		std::env::var("TARGET").unwrap()
	);

	println!(
		"cargo:rustc-env=HOST={}",
		std::env::var("HOST").unwrap()
	);
}