11 lines
204 B
Rust
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();
|
|
}
|