Remove Windows plugin

This commit is contained in:
Gregory Schier
2024-06-04 02:56:52 -07:00
parent 8d6f23eacb
commit 5e2218fd64
4 changed files with 1 additions and 111 deletions

View File

@@ -69,8 +69,6 @@ mod plugin;
mod render;
#[cfg(target_os = "macos")]
mod tauri_plugin_mac_window;
#[cfg(target_os = "windows")]
mod tauri_plugin_windows_window;
mod updates;
mod window_menu;
@@ -1553,11 +1551,6 @@ pub fn run() {
.plugin(tauri_plugin_os::init())
.plugin(tauri_plugin_fs::init());
#[cfg(target_os = "windows")]
{
builder = builder.plugin(tauri_plugin_windows_window::init());
}
#[cfg(target_os = "macos")]
{
builder = builder.plugin(tauri_plugin_mac_window::init());