mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-16 06:38:03 +08:00
9 lines
238 B
Rust
9 lines
238 B
Rust
use std::{fs, path::PathBuf};
|
|
|
|
fn main() {
|
|
// Directory required for compilation, but not tracked by git if empty.
|
|
let dist_dir: PathBuf = ["..", "dist"].iter().collect();
|
|
fs::create_dir_all(dist_dir).unwrap();
|
|
tauri_build::build()
|
|
}
|