mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-19 07:42:54 +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
|