librustzcash/zcash_client_backend/build.rs

9 lines
225 B
Rust
Raw Normal View History

2018-10-12 10:22:58 -07:00
fn main() {
2020-05-21 23:55:46 -07:00
protobuf_codegen_pure::Codegen::new()
.out_dir("src/proto")
.inputs(&["proto/compact_formats.proto"])
.includes(&["proto"])
.run()
.expect("Protobuf codegen failed");
2018-10-12 10:22:58 -07:00
}