nushell/crates/nu-plugin/build.rs

8 lines
168 B
Rust
Raw Normal View History

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