From db35d8762c9e644d1b3d0161f7ff8dc9edd829e3 Mon Sep 17 00:00:00 2001 From: ChestnutYueyue <952134128@qq.com> Date: Wed, 11 Feb 2026 16:56:10 +0800 Subject: [PATCH] =?UTF-8?q?build(mingw):=20=E6=B7=BB=E5=8A=A0=E5=AF=B9ming?= =?UTF-8?q?w=E5=B9=B3=E5=8F=B0=E7=9A=84=E6=94=AF=E6=8C=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 添加mingw平台的工具链配置,使其能够在该平台下进行构建 --- xmake.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/xmake.lua b/xmake.lua index 77c8e2f..289a705 100644 --- a/xmake.lua +++ b/xmake.lua @@ -63,6 +63,8 @@ end if target_plat == "switch" then includes("xmake/toolchains/switch.lua") set_toolchains("switch") +elseif target_plat == "mingw" then + set_toolchains("mingw") end -- ==============================================