ddnet/other/freetype/freetype.lua

63 lines
1.6 KiB
Lua
Raw Normal View History

2010-05-29 07:25:38 +00:00
FreeType = {
basepath = PathDir(ModuleFilename()),
OptFind = function (name, required)
local check = function(option, settings)
option.value = false
option.use_ftconfig = false
option.use_win32lib = false
option.lib_path = nil
if ExecuteSilent("freetype-config") > 0 and ExecuteSilent("freetype-config --cflags") == 0 then
option.value = true
option.use_ftconfig = true
end
if platform == "win32" then
option.value = true
option.use_win32lib = true
end
end
local apply = function(option, settings)
-- include path
settings.cc.includes:Add(FreeType.basepath .. "/include")
if option.use_ftconfig == true then
settings.cc.flags:Add("`freetype-config --cflags`")
settings.link.flags:Add("`freetype-config --libs`")
elseif option.use_win32lib == true then
2010-07-23 13:22:15 +00:00
settings.link.libs:Add(FreeType.basepath .. "/lib/freetype241MT")
2010-05-29 07:25:38 +00:00
end
end
local save = function(option, output)
output:option(option, "value")
output:option(option, "use_ftconfig")
output:option(option, "use_win32lib")
end
local display = function(option)
if option.value == true then
if option.use_ftconfig == true then return "using freetype-config" end
if option.use_win32lib == true then return "using supplied win32 libraries" end
return "using unknown method"
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
}