wxbox/crates/interchange/build.rs
core aa172be1ef
Some checks are pending
Verify Latest Dependencies / Verify Latest Dependencies (push) Waiting to run
build and test / wxbox - latest (push) Waiting to run
cif v2
2025-05-23 13:10:46 -04:00

11 lines
No EOL
302 B
Rust

fn main() {
prost_build::compile_protos(
&[
"src/cifContainer.proto",
"src/digitalRadarData.proto"
],
&["src/"]
).unwrap();
println!("cargo:rerun-if-changed=src/cif.proto");
println!("cargo:rerun-if-changed=src/digitalRadarData.proto");
}