ddnet/other/freetype/freetype.lua

78 lines
2.3 KiB
Lua
Raw Normal View History

2010-05-29 07:25:38 +00:00
FreeType = {
basepath = PathDir(ModuleFilename()),
OptFind = function (name, required)
2010-05-29 07:25:38 +00:00
local check = function(option, settings)
option.value = false
option.use_pkgconfig = false
2010-05-29 07:25:38 +00:00
option.use_ftconfig = false
2011-12-04 21:28:58 +00:00
option.use_winlib = 0
2010-05-29 07:25:38 +00:00
option.lib_path = nil
if ExecuteSilent("pkg-config freetype2") == 0 then
option.value = true
option.use_pkgconfig = true
elseif ExecuteSilent("freetype-config") > 0 and ExecuteSilent("freetype-config --cflags") == 0 then
2010-05-29 07:25:38 +00:00
option.value = true
option.use_ftconfig = true
end
2010-05-29 07:25:38 +00:00
if platform == "win32" then
option.value = true
2011-12-04 21:28:58 +00:00
option.use_winlib = 32
elseif platform == "win64" then
option.value = true
option.use_winlib = 64
2010-05-29 07:25:38 +00:00
end
end
2010-05-29 07:25:38 +00:00
local apply = function(option, settings)
if option.use_pkgconfig == true then
settings.cc.flags:Add("`pkg-config --cflags freetype2`")
settings.link.flags:Add("`pkg-config --libs freetype2`")
elseif option.use_ftconfig == true then
2010-05-29 07:25:38 +00:00
settings.cc.flags:Add("`freetype-config --cflags`")
settings.link.flags:Add("`freetype-config --libs`")
2011-12-04 21:28:58 +00:00
elseif option.use_winlib > 0 then
settings.cc.includes:Add(FreeType.basepath .. "/include")
2011-12-04 21:28:58 +00:00
if option.use_winlib == 32 then
settings.link.libpath:Add(FreeType.basepath .. "/lib/x86")
2011-12-04 21:28:58 +00:00
else
settings.link.libpath:Add(FreeType.basepath .. "/lib/x64")
2011-12-04 21:28:58 +00:00
end
settings.link.libs:Add("freetype")
2010-05-29 07:25:38 +00:00
end
end
2010-05-29 07:25:38 +00:00
local save = function(option, output)
output:option(option, "value")
output:option(option, "use_pkgconfig")
2010-05-29 07:25:38 +00:00
output:option(option, "use_ftconfig")
2011-12-04 21:28:58 +00:00
output:option(option, "use_winlib")
2010-05-29 07:25:38 +00:00
end
2010-05-29 07:25:38 +00:00
local display = function(option)
if option.value == true then
if option.use_pkgconfig == true then return "using pkg-config" end
2010-05-29 07:25:38 +00:00
if option.use_ftconfig == true then return "using freetype-config" end
2011-12-04 21:28:58 +00:00
if option.use_winlib == 32 then return "using supplied win32 libraries" end
if option.use_winlib == 64 then return "using supplied win64 libraries" end
2010-05-29 07:25:38 +00:00
return "using unknown method"
else
if option.required then
return "not found (required)"
else
return "not found (optional)"
end
end
end
2010-05-29 07:25:38 +00:00
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
}