mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2026-05-04 01:19:36 +00:00
chore: add eigen library for vector math
This commit is contained in:
@@ -13,3 +13,6 @@
|
||||
[submodule "thirdparty/json"]
|
||||
path = thirdparty/json
|
||||
url = https://github.com/nlohmann/json.git
|
||||
[submodule "thirdparty/eigen"]
|
||||
path = thirdparty/eigen
|
||||
url = https://gitlab.com/libeigen/eigen.git
|
||||
|
||||
@@ -84,6 +84,7 @@ workspace "OpenAssetTools"
|
||||
-- ThirdParty
|
||||
-- ========================
|
||||
include "thirdparty/catch2.lua"
|
||||
include "thirdparty/eigen.lua"
|
||||
include "thirdparty/libtomcrypt.lua"
|
||||
include "thirdparty/libtommath.lua"
|
||||
include "thirdparty/json.lua"
|
||||
@@ -95,6 +96,7 @@ include "thirdparty/zlib.lua"
|
||||
-- ThirdParty group: All projects that are external dependencies
|
||||
group "ThirdParty"
|
||||
catch2:project()
|
||||
eigen:project()
|
||||
libtommath:project()
|
||||
libtomcrypt:project()
|
||||
json:project()
|
||||
|
||||
@@ -55,6 +55,7 @@ function ObjWriting:project()
|
||||
Utils:include(includes)
|
||||
minilzo:include(includes)
|
||||
minizip:include(includes)
|
||||
eigen:include(includes)
|
||||
json:include(includes)
|
||||
libtomcrypt:include(includes)
|
||||
|
||||
|
||||
+1
Submodule thirdparty/eigen added at afb17288cb
Vendored
+23
@@ -0,0 +1,23 @@
|
||||
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
|
||||
Reference in New Issue
Block a user