remove .lib file extension for windows in case it is a burden later

This commit is contained in:
otavepto 2024-05-23 02:17:08 +03:00
parent 10f1e89736
commit 7ddd5add20

View File

@ -227,9 +227,9 @@ local common_link_linux = {
} }
local overlay_link_win = { local overlay_link_win = {
"ingame_overlay.lib", "ingame_overlay",
"system.lib", -- ingame_overlay dependency "system", -- ingame_overlay dependency
"mini_detour.lib", -- ingame_overlay dependency "mini_detour", -- ingame_overlay dependency
} }
local overlay_link_linux = { local overlay_link_linux = {
@ -829,7 +829,7 @@ project "tool_lobby_connect"
filter { "system:windows", } filter { "system:windows", }
links { links {
common_link_win, common_link_win,
'Comdlg32.lib', 'Comdlg32',
} }
-- Linux libs to link -- Linux libs to link
@ -1105,7 +1105,7 @@ project "steamclient_experimental_loader_win"
filter {} -- reset the filter and remove all active keywords filter {} -- reset the filter and remove all active keywords
links { links {
-- common_link_win, -- common_link_win,
'user32.lib', 'user32',
} }
-- End steamclient_experimental_loader_win -- End steamclient_experimental_loader_win