Rewrite build.sh in rust

This makes it easier to compile cg_clif on systems that don't support
bash shell scripts like Windows
This commit is contained in:
bjorn3 2021-06-08 14:33:25 +02:00
parent 0ddb937624
commit 2db4e50618
9 changed files with 372 additions and 91 deletions

17
.vscode/settings.json vendored
View file

@ -49,6 +49,23 @@
"cfg": [],
},
]
},
{
"roots": ["./y.rs"],
"crates": [
{
"root_module": "./y.rs",
"edition": "2018",
"deps": [{ "crate": 1, "name": "std" }],
"cfg": [],
},
{
"root_module": "./build_sysroot/sysroot_src/library/std/src/lib.rs",
"edition": "2018",
"deps": [],
"cfg": [],
},
]
}
]
}