From 96c8c1a80745b3b281b8bce643374c8f93e0fee8 Mon Sep 17 00:00:00 2001 From: otavepto <153766569+otavepto@users.noreply.github.com> Date: Wed, 29 May 2024 21:49:28 +0300 Subject: [PATCH] fix overlay linking on MinGw, ALL x64 BINARIES ARE COMPILING/LINKING AND WORKING! --- premake5.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/premake5.lua b/premake5.lua index 43e655e5..2db00b17 100644 --- a/premake5.lua +++ b/premake5.lua @@ -251,12 +251,12 @@ local common_link_linux = { "mbedcrypto:static_whole", } +-- overlay libs local overlay_link_win = { - "ingame_overlay", - "system", -- ingame_overlay dependency - "mini_detour", -- ingame_overlay dependency + "ingame_overlay" .. mingw_whole_archive, + "system" .. mingw_whole_archive, -- ingame_overlay dependency + "mini_detour" .. mingw_whole_archive, -- ingame_overlay dependency } - local overlay_link_linux = { "ingame_overlay:static_whole", "system:static_whole", -- ingame_overlay dependency