mirror of
https://github.com/Detanup01/gbe_fork.git
synced 2024-11-23 19:25:35 +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 = {
|
||||
"ingame_overlay.lib",
|
||||
"system.lib", -- ingame_overlay dependency
|
||||
"mini_detour.lib", -- ingame_overlay dependency
|
||||
"ingame_overlay",
|
||||
"system", -- ingame_overlay dependency
|
||||
"mini_detour", -- ingame_overlay dependency
|
||||
}
|
||||
|
||||
local overlay_link_linux = {
|
||||
@ -829,7 +829,7 @@ project "tool_lobby_connect"
|
||||
filter { "system:windows", }
|
||||
links {
|
||||
common_link_win,
|
||||
'Comdlg32.lib',
|
||||
'Comdlg32',
|
||||
}
|
||||
|
||||
-- Linux libs to link
|
||||
@ -1105,7 +1105,7 @@ project "steamclient_experimental_loader_win"
|
||||
filter {} -- reset the filter and remove all active keywords
|
||||
links {
|
||||
-- common_link_win,
|
||||
'user32.lib',
|
||||
'user32',
|
||||
}
|
||||
-- End steamclient_experimental_loader_win
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user