shrooms-server/shroom-server/build.rs

8 lines
173 B
Rust

use std::io::Result;
fn main() -> Result<()> {
println!("cargo:rerun-if-changed=entry.proto");
prost_build::compile_protos(&["entry.proto"], &["."])?;
Ok(())
}