staticly linking most of it

This commit is contained in:
Detanup01 2024-05-17 11:40:43 +02:00 committed by otavepto
parent f26cc7a008
commit bbbafb9a34

View File

@ -31,11 +31,11 @@ local win_link = {
local linux_link = { local linux_link = {
"pthread", "pthread",
"dl", "dl",
"ssq", "ssq:static",
"z", -- libz library "z:static", -- libz library
"curl", "curl:static",
"protobuf-lite", "protobuf-lite:static",
"mbedcrypto" "mbedcrypto:static"
} }
local default_link = { local default_link = {
@ -56,9 +56,9 @@ local overlay_link_windows = {
} }
local overlay_link_linux = { local overlay_link_linux = {
"ingame_overlay", "ingame_overlay:static",
"system", -- ingame_overlay dependency "system:static", -- ingame_overlay dependency
"mini_detour" -- ingame_overlay dependency "mini_detour:static" -- ingame_overlay dependency
} }
local default_include = { local default_include = {