10 lines
No EOL
293 B
Rust
10 lines
No EOL
293 B
Rust
fn main() {
|
|
capnpc::CompilerCommand::new()
|
|
.output_path("src/")
|
|
.src_prefix("schemas")
|
|
.file("schemas/schema.capnp")
|
|
.file("schemas/digitalRadarData.capnp")
|
|
.file("schemas/tilerStatusReport.capnp")
|
|
.run()
|
|
.expect("capnp compiles");
|
|
} |