From 09e19b6e160b6d575161b93bf78360685fc8de2e Mon Sep 17 00:00:00 2001 From: futile Date: Thu, 6 Nov 2025 05:06:57 +0000 Subject: [PATCH] remove hardly useful "windows compilation only" warning --- src/main.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/main.rs b/src/main.rs index a735953..ed6f5e8 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,8 +1,5 @@ #![cfg_attr(not(debug_assertions), windows_subsystem = "windows")] -#[cfg(not(target_os = "windows"))] -compile_error!("This application must be compiled for Windows."); - mod features; mod gui; mod util;