mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
d77c41013f
* chore: build tauri from vscode launch * fix: unit test Co-authored-by: nathan <nathan@appflowy.io>
8 lines
189 B
Rust
8 lines
189 B
Rust
use std::env;
|
|
fn main() {
|
|
env::set_var("TAURI_PROTOBUF_PATH", "appflowy_tauri/src/protobuf");
|
|
env::set_var("CARGO_MAKE_WORKING_DIRECTORY", "../../../");
|
|
|
|
tauri_build::build()
|
|
}
|