mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-14 13:21:01 +03:00
4c4acc3094
Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
17 lines
510 B
Rust
17 lines
510 B
Rust
// Copyright 2019-2021 Tauri Programme within The Commons Conservancy
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#![cfg_attr(
|
|
all(not(debug_assertions), target_os = "windows"),
|
|
windows_subsystem = "windows"
|
|
)]
|
|
|
|
fn main() {
|
|
let context = tauri::generate_context!("../../examples/helloworld/tauri.conf.json");
|
|
tauri::Builder::default()
|
|
.menu(tauri::Menu::os_default(&context.package_info().name))
|
|
.run(context)
|
|
.expect("error while running tauri application");
|
|
}
|