mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2025-07-13 18:54:59 +00:00
8 lines
238 B
Rust
8 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()
|
|
}
|