mirror of
https://github.com/bspeice/capnp_cookbook_2
synced 2025-06-21 04:24:47 -04:00
9 lines
182 B
Rust
9 lines
182 B
Rust
extern crate capnpc;
|
|
|
|
fn main() {
|
|
::capnpc::CompilerCommand::new()
|
|
.src_prefix("schema")
|
|
.file("schema/point.capnp")
|
|
.run().expect("compiling schema");
|
|
}
|