pinnacle/snowcap/snowcap-api-defs/build.rs
Ottatop 83f968c3c9 Un-submodule snowcap
ya know it turns out when you have a submodule it's a real pain to update things
2024-12-15 21:41:45 -06:00

23 lines
658 B
Rust

use std::path::PathBuf;
fn main() {
println!("cargo:rerun-if-changed=../api/protobuf");
let mut proto_paths = Vec::new();
for entry in walkdir::WalkDir::new("../api/protobuf") {
let entry = entry.unwrap();
if entry.file_type().is_file() && entry.path().extension().is_some_and(|ext| ext == "proto")
{
proto_paths.push(entry.into_path());
}
}
let descriptor_path = PathBuf::from(std::env::var("OUT_DIR").unwrap()).join("snowcap.bin");
tonic_build::configure()
.file_descriptor_set_path(descriptor_path)
.compile(&proto_paths, &["../api/protobuf"])
.unwrap();
}