ENH: Replace GLM with Eigen

This commit is contained in:
David Allemang
2023-01-27 22:28:39 -05:00
parent b228f76658
commit 1f284ed349
6 changed files with 47 additions and 25 deletions

10
vendor/eigen.cmake vendored Normal file
View File

@@ -0,0 +1,10 @@
FetchContent_Declare(
eigen
GIT_REPOSITORY https://gitlab.com/libeigen/eigen.git
GIT_TAG 3.4
GIT_PROGRESS TRUE
)
set(EIGEN_BUILD_DOC OFF CACHE INTERNAL "")
set(BUILD_TESTING OFF CACHE INTERNAL "")
set(EIGEN_BUILD_PKGCONFIG OFF CACHE INTERNAL "")
FetchContent_MakeAvailable(eigen)

8
vendor/glm.cmake vendored
View File

@@ -1,8 +0,0 @@
FetchContent_Declare(
glm
GIT_REPOSITORY https://github.com/g-truc/glm.git
GIT_TAG 0.9.9.8
GIT_PROGRESS TRUE
)
FetchContent_MakeAvailable(glm)