From 91dfe2206588dbf71b649f4c1962bda594237f20 Mon Sep 17 00:00:00 2001 From: Persson-dev Date: Thu, 11 Aug 2022 13:37:02 +0200 Subject: [PATCH] fixing ldflag argument --- xmake.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xmake.lua b/xmake.lua index dd15b68..2543b02 100644 --- a/xmake.lua +++ b/xmake.lua @@ -22,6 +22,6 @@ target("UCT") add_ldflags("-static") -- Hide console if is_mode("release") then - add_ldflags("mwindows", {force = true}) + add_ldflags("-mwindows") end end