File size: 609 Bytes
dabfdaa | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | use std::path::PathBuf;
fn main() -> Result<(), Box<dyn std::error::Error>> {
println!("cargo:rustc-check-cfg=cfg(codex_bazel)");
println!("cargo:rerun-if-changed=src/grpc");
let mut config = tonic_prost_build::Config::new();
config.protoc_executable(protoc_bin_vendored::protoc_bin_path()?);
let proto_files = glob::glob("src/grpc/*.proto")?.collect::<Result<Vec<_>, _>>()?;
tonic_prost_build::configure()
.build_client(/*enable*/ true)
.build_server(/*enable*/ true)
.compile_with_config(config, &proto_files, &[PathBuf::from("src/grpc")])?;
Ok(())
}
|