AppFlowy/frontend/rust-lib/flowy-grid/build.rs

10 lines
228 B
Rust
Raw Normal View History

2022-03-02 14:43:04 +00:00
use lib_infra::code_gen;
fn main() {
let crate_name = env!("CARGO_PKG_NAME");
code_gen::protobuf_file::gen(crate_name, "./src/protobuf/proto");
2022-03-05 09:52:25 +00:00
#[cfg(feature = "dart")]
2022-03-02 14:43:04 +00:00
code_gen::dart_event::gen(crate_name);
}