mirror of
https://github.com/hexedtech/codemp.git
synced 2024-11-22 15:24:48 +01:00
18 lines
464 B
Rust
18 lines
464 B
Rust
fn main() -> Result<(), Box<dyn std::error::Error>> {
|
|
tonic_build::configure()
|
|
// .build_client(cfg!(feature = "client"))
|
|
// .build_server(cfg!(feature = "server")) // FIXME if false, build fails????
|
|
// .build_transport(cfg!(feature = "proto"))
|
|
.compile(
|
|
&[
|
|
"proto/common.proto",
|
|
"proto/cursor.proto",
|
|
"proto/files.proto",
|
|
"proto/auth.proto",
|
|
"proto/workspace.proto",
|
|
"proto/buffer.proto",
|
|
],
|
|
&["proto"],
|
|
)?;
|
|
Ok(())
|
|
}
|