source code

This commit is contained in:
rustdesk
2021-03-27 09:41:55 +08:00
parent 002fce136c
commit ad0a24ba23
176 changed files with 35192 additions and 2 deletions

9
libs/hbb_common/build.rs Normal file
View File

@@ -0,0 +1,9 @@
fn main() {
std::fs::create_dir_all("src/protos").unwrap();
protobuf_codegen_pure::Codegen::new()
.out_dir("src/protos")
.inputs(&["protos/rendezvous.proto", "protos/message.proto"])
.include("protos")
.run()
.expect("Codegen failed.");
}