nushell/crates/nu-plugin/build.rs

8 lines
167 B
Rust
Raw Normal View History

2021-10-23 22:08:54 +02:00
fn main() {
capnpc::CompilerCommand::new()
.src_prefix("schema")
.file("schema/value.capnp")
.run()
.expect("compiling schema");
}