This repository has been archived on 2024-12-20. You can view files and clone it, but cannot push or open issues or pull requests.
YanagiZS/crates/yanagi-data/build.rs
2024-11-25 02:17:19 +03:00

11 lines
260 B
Rust

use std::path::Path;
fn main() {
println!("cargo:rerun-if-changed=fbs");
let _ = flatc_rust::run(flatc_rust::Args {
inputs: &[Path::new("fbs/tables.fbs")],
out_dir: Path::new("gen_flatbuffers"),
..Default::default()
});
}