First Version

This commit is contained in:
2026-07-10 15:02:09 +01:00
commit 38494a85a9
562 changed files with 196313 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
// Build script.
//
// In headless mode (default) it is a no-op. Under the `desktop` feature it
// delegates to `tauri_build`, which merges `tauri.conf.json` + `capabilities/`
// and emits the cfg flags that `tauri::generate_context!()` relies on at runtime.
fn main() {
#[cfg(feature = "desktop")]
tauri_build::build()
}