wxbox/crates/interchange/build.rs
core 182252e209
Some checks are pending
Verify Latest Dependencies / Verify Latest Dependencies (push) Waiting to run
build and test / wxbox - latest (push) Waiting to run
feat: cif (name pending)
2025-05-19 21:07:33 -04:00

10 lines
No EOL
293 B
Rust

fn main() {
capnpc::CompilerCommand::new()
.output_path("src/")
.src_prefix("schemas")
.file("schemas/schema.capnp")
.file("schemas/digitalRadarData.capnp")
.file("schemas/tilerStatusReport.capnp")
.run()
.expect("capnp compiles");
}