Rust XHCI scaffolding

This commit is contained in:
Drew 2025-05-18 19:11:52 -07:00
parent 1a48911745
commit b9cd550a63
13 changed files with 59 additions and 31 deletions

View file

@ -0,0 +1,14 @@
use std::fs;
fn main() {
let input_file = "../../../../sys/voyageurs/lib/voyageurs/voyageurs.yunq";
println!("cargo::rerun-if-changed={input_file}");
let input = fs::read_to_string(input_file).expect("Failed to read input file");
let code = yunqc::codegen(&input).expect("Failed to generate yunq code.");
let out = std::env::var("OUT_DIR").unwrap() + "/yunq.rs";
fs::write(out, code).expect("Failed to write generated code.");
}