mraow/common/build.rs

10 lines
172 B
Rust
Raw Permalink Normal View History

2023-12-25 09:36:54 +00:00
use anyhow::Result;
fn main() -> Result<()> {
capnpc::CompilerCommand::new()
.file("./proto/clientserver.capnp")
.import_path("./proto")
.run()?;
Ok(())
}