mraow/common/build.rs
2023-12-25 04:43:15 -05:00

10 lines
172 B
Rust

use anyhow::Result;
fn main() -> Result<()> {
capnpc::CompilerCommand::new()
.file("./proto/clientserver.capnp")
.import_path("./proto")
.run()?;
Ok(())
}