librustzcash/zcash_client_backend/build.rs

11 lines
253 B
Rust
Raw Normal View History

2018-10-12 10:22:58 -07:00
use protobuf_codegen_pure;
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
}