mirror of
				https://github.com/Laupetin/OpenAssetTools.git
				synced 2025-10-30 18:17:15 +00: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