mumble-web-proxy/build.rs

13 lines
338 B
Rust
Raw Normal View History

2018-12-02 22:25:45 +00:00
extern crate protobuf_codegen_pure;
fn main() {
protobuf_codegen_pure::run(protobuf_codegen_pure::Args {
out_dir: "src/protos",
input: &["protos/Mumble.proto"],
includes: &["protos"],
customize: protobuf_codegen_pure::Customize {
..Default::default()
},
}).expect("protoc");
}