esphome-proto/build.rs

14 lines
358 B
Rust
Raw Normal View History

2024-01-17 11:27:23 +00:00
fn main() {
#[cfg(feature = "codegen")]
{
protobuf_codegen::Codegen::new()
2024-01-17 22:58:50 +00:00
.protoc()
.protoc_extra_arg("--include_source_info")
2024-01-17 11:27:23 +00:00
.includes(&["src"])
.input("src/api.proto")
.input("src/api_options.proto")
.out_dir("src/generated")
.run_from_script();
}
}