yotei/uwusched-nodes/build.rs
xqtc 7fc00dcbb0
All checks were successful
/ build (push) Successful in 2m6s
/ clippy (push) Successful in 1m37s
Impl AliveCheck server on compute node
2024-09-09 17:11:37 +02:00

12 lines
395 B
Rust

use std::{env, path::PathBuf};
fn main() -> Result<(), Box<dyn std::error::Error>> {
let out_dir = PathBuf::from(env::var("OUT_DIR").unwrap());
tonic_build::configure()
.file_descriptor_set_path(out_dir.join("protocol_descriptor.bin"))
.compile(&["../protos/protocol.proto"], &["../protos"])?;
tonic_build::compile_protos("../protos/protocol.proto")?;
Ok(())
}