h1-mod/deps/premake/stb.lua

20 lines
226 B
Lua
Raw Normal View History

2022-02-03 14:35:55 -05:00
stb = {
source = path.join(dependencies.basePath, "stb"),
}
function stb.import()
stb.includes()
end
function stb.includes()
includedirs {
stb.source
}
end
function stb.project()
end
table.insert(dependencies, stb)