You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- fn main() {
- build_runtime();
-
- println!("cargo:rerun-if-changed=build.rs");
- println!("cargo:rerun-if-changed=schema/message.capnp");
- }
-
- fn build_runtime() {
- capnpc::CompilerCommand::new()
- .src_prefix("schema")
- .file("schema/message.capnp")
- .run()
- .expect("schema compiler command");
- }
|