mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 18:18:18 +00:00
96 lines
2.8 KiB
Lua
96 lines
2.8 KiB
Lua
Curl = {
|
|
basepath = PathDir(ModuleFilename()),
|
|
|
|
OptFind = function (name, required)
|
|
local check = function(option, settings)
|
|
option.value = false
|
|
option.lib_path = nil
|
|
|
|
if IsNegativeTerm(ScriptArgs[name .. ".use_pkgconfig"]) then
|
|
option.use_pkgconfig = false
|
|
elseif IsPositiveTerm(ScriptArgs[name .. ".use_pkgconfig"]) then
|
|
option.use_pkgconfig = true
|
|
end
|
|
|
|
if ExecuteSilent("pkg-config libcurl") == 0 then
|
|
option.value = true
|
|
if option.use_pkgconfig == nil then
|
|
option.use_pkgconfig = true
|
|
end
|
|
end
|
|
|
|
if option.use_pkgconfig == nil then
|
|
option.use_pkgconfig = false
|
|
end
|
|
|
|
if platform == "win32" then
|
|
option.value = true
|
|
elseif platform == "win64" then
|
|
option.value = true
|
|
elseif platform == "macosx" and string.find(settings.config_name, "32") then
|
|
option.value = true
|
|
elseif platform == "macosx" and string.find(settings.config_name, "64") then
|
|
option.value = true
|
|
elseif platform == "linux" and arch == "ia32" then
|
|
option.value = true
|
|
elseif platform == "linux" and arch == "amd64" then
|
|
option.value = true
|
|
end
|
|
end
|
|
|
|
local apply = function(option, settings)
|
|
if option.use_pkgconfig == true then
|
|
settings.cc.flags:Add("`pkg-config --cflags libcurl`")
|
|
settings.link.flags:Add("`pkg-config --libs libcurl`")
|
|
else
|
|
settings.cc.includes:Add(Curl.basepath .. "/include")
|
|
|
|
if family ~= "windows" then
|
|
settings.link.libs:Add("curl")
|
|
settings.link.libs:Add("ssl")
|
|
settings.link.libs:Add("crypto")
|
|
end
|
|
|
|
if platform == "win32" then
|
|
settings.link.libpath:Add("other/curl/windows/lib32")
|
|
elseif platform == "win64" then
|
|
settings.link.libpath:Add("other/curl/windows/lib64")
|
|
elseif platform == "macosx" and string.find(settings.config_name, "32") then
|
|
settings.link.libpath:Add("other/curl/mac/lib32")
|
|
elseif platform == "macosx" and string.find(settings.config_name, "64") then
|
|
settings.link.libpath:Add("other/curl/mac/lib64")
|
|
elseif platform == "linux" and arch == "ia32" then
|
|
settings.link.libpath:Add("other/curl/linux/lib32")
|
|
elseif platform == "linux" and arch == "amd64" then
|
|
settings.link.libpath:Add("other/curl/linux/lib64")
|
|
end
|
|
end
|
|
end
|
|
|
|
local save = function(option, output)
|
|
output:option(option, "value")
|
|
output:option(option, "use_pkgconfig")
|
|
end
|
|
|
|
local display = function(option)
|
|
if option.value == true then
|
|
if option.use_pkgconfig == true then return "using pkg-config" end
|
|
return "using bundled libs"
|
|
else
|
|
if option.required then
|
|
return "not found (required)"
|
|
else
|
|
return "not found (optional)"
|
|
end
|
|
end
|
|
end
|
|
|
|
local o = MakeOption(name, 0, check, save, display)
|
|
o.Apply = apply
|
|
o.include_path = nil
|
|
o.lib_path = nil
|
|
o.required = required
|
|
return o
|
|
end
|
|
}
|