esphome-proto/build.rs

13 lines
301 B
Rust
Raw Normal View History

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