mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-11 07:18:11 -05:00
move parts to new common component to avoid circular dependency of zonecommon and objcommon
This commit is contained in:
@ -2,17 +2,19 @@ ZoneCommon = {}
|
||||
|
||||
function ZoneCommon:include(includes)
|
||||
if includes:handle(self:name()) then
|
||||
Utils:include(includes)
|
||||
ObjCommon:include(includes)
|
||||
includedirs {
|
||||
path.join(ProjectFolder(), "ZoneCommon")
|
||||
}
|
||||
Utils:include(includes)
|
||||
Common:include(includes)
|
||||
ObjCommon:include(includes)
|
||||
end
|
||||
end
|
||||
|
||||
function ZoneCommon:link(links)
|
||||
links:add(self:name())
|
||||
links:linkto(Utils)
|
||||
links:linkto(Common)
|
||||
links:linkto(ObjCommon)
|
||||
end
|
||||
|
||||
|
Reference in New Issue
Block a user