20 lines
226 B
Lua
20 lines
226 B
Lua
|
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)
|