2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-06-26 06:11:53 +00:00

Rework depedency management in premake lua scripts

This commit is contained in:
Jan
2021-03-03 11:55:37 -08:00
parent 1a45cf2107
commit dc3fef5b0f
29 changed files with 447 additions and 386 deletions

View File

@ -0,0 +1,20 @@
-- Functions for including projects
Includes = {}
function Includes:create()
list = {
handles = {}
}
function list:handle(name)
if self.handles[name] == nil then
self.handles[name] = true
return true
end
return false
end
return list
end