iw4x-client/deps/premake/fonts.lua
2023-03-06 17:28:35 +00:00

30 lines
408 B
Lua

fonts = {
source = path.join(dependencies.basePath, "extra/font"),
}
function fonts.import()
fonts.includes()
end
function fonts.includes()
includedirs {
fonts.source,
}
end
function fonts.project()
project "fonts"
language "C"
fonts.includes()
files {
path.join(fonts.source, "Terminus_4.49.1.ttf.hpp"),
}
warnings "Off"
kind "SharedItems"
end
table.insert(dependencies, fonts)