Files
client-sdk-rust/livekit-ffi/build.rs
T
Théo MonnomandGitHub 1610f86316 feat: basic ffi server to support other languages (#34)
* wip

* wip

* wip

* wip

not a fan of the way I do handles ..

* errors and async semantic

* fix example
2023-01-25 00:09:19 +01:00

8 lines
137 B
Rust

use std::io::Result;
fn main() -> Result<()> {
prost_build::compile_protos(&["protocol/ffi.proto"], &["protocol/"])?;
Ok(())
}