mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-09-28 20:16:09 +00:00
1. update configurator document. 2. fix build script doesn't generate allchecks.xsd issue. 3. add open_devtools command, now we can get detail debug info in prod. 4. remove vconsole component, which will cause some strange js runtime issue in Linux. Tracked-On: #6691 Signed-off-by: Weiyi Feng <weiyix.feng@intel.com>
27 lines
806 B
Rust
27 lines
806 B
Rust
#![cfg_attr(
|
|
all(not(debug_assertions), target_os = "windows"),
|
|
windows_subsystem = "windows"
|
|
)]
|
|
|
|
mod configurator;
|
|
|
|
fn main() {
|
|
tauri::Builder::default()
|
|
.invoke_handler(tauri::generate_handler![
|
|
configurator::get_history,
|
|
configurator::add_history,
|
|
configurator::set_working_folder,
|
|
configurator::write_board,
|
|
configurator::force_reset,
|
|
configurator::get_home,
|
|
configurator::acrn_read,
|
|
configurator::acrn_write,
|
|
configurator::acrn_is_file,
|
|
configurator::acrn_read_dir,
|
|
configurator::acrn_create_dir,
|
|
configurator::open_devtools
|
|
])
|
|
.run(tauri::generate_context!())
|
|
.expect("error while running tauri application");
|
|
}
|