churn/crates/churn-capnp/build.rs
kjuulh 757d1081bd
feat: with sled db
Signed-off-by: kjuulh <contact@kjuulh.io>
2023-08-27 16:49:53 +02:00

11 lines
204 B
Rust

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