crunch/crates/crunch-envelope/build.rs
kjuulh 795d009cd0
feat: with base envelope
Signed-off-by: kjuulh <contact@kjuulh.io>
2023-09-17 00:31:43 +02:00

11 lines
206 B
Rust

extern crate capnpc;
fn main() {
capnpc::CompilerCommand::new()
.output_path("src/")
.src_prefix("schemas/")
.file("schemas/envelope.capnp")
.run()
.unwrap();
}