mirror of
https://github.com/bspeice/capnp_cookbook_2
synced 2025-07-13 11:45:05 -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");
|
||
|
}
|