Rough first attempt

This commit is contained in:
ryan 2020-12-14 20:43:51 +13:00
commit d31364f5da
8 changed files with 2488 additions and 0 deletions

8
build.rs Normal file
View file

@ -0,0 +1,8 @@
// Fetch build target and define this for the compiler
fn main() {
println!(
"cargo:rustc-env=TARGET={}",
std::env::var("TARGET").unwrap()
);
}