mirror of
				https://github.com/Laupetin/OpenAssetTools.git
				synced 2025-11-04 04:27:15 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			294 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			294 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
eigen = {}
 | 
						|
 | 
						|
function eigen:include(includes)
 | 
						|
	if includes:handle(self:name()) then
 | 
						|
		includedirs {
 | 
						|
			path.join(ThirdPartyFolder(), "eigen", "Eigen")
 | 
						|
		}
 | 
						|
	end
 | 
						|
end
 | 
						|
 | 
						|
function eigen:link()
 | 
						|
end
 | 
						|
 | 
						|
function eigen:use()
 | 
						|
	
 | 
						|
end
 | 
						|
 | 
						|
function eigen:name()
 | 
						|
    return "eigen"
 | 
						|
end
 | 
						|
 | 
						|
function eigen:project()
 | 
						|
end
 |