mirror of
https://github.com/Detanup01/gbe_fork.git
synced 2024-11-27 13:14:01 +08:00
remove .lib file extension for windows in case it is a burden later
This commit is contained in:
parent
10f1e89736
commit
7ddd5add20
10
premake5.lua
10
premake5.lua
@ -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
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user