Update dependency management

This commit is contained in:
2021-03-05 20:54:33 +01:00
parent 11e5c0dcd2
commit 7c25151573
7 changed files with 84 additions and 33 deletions

12
3rdParty/eigen/CMakeLists.txt vendored Normal file
View File

@@ -0,0 +1,12 @@
include(FetchContent)
FetchContent_Declare(
eigen
GIT_REPOSITORY https://gitlab.com/libeigen/eigen.git
GIT_TAG master
GIT_SHALLOW TRUE
)
set(EIGEN_BUILD_DOC OFF)
set(BUILD_TESTING OFF)
set(EIGEN_BUILD_PKGCONFIG OFF)
FetchContent_MakeAvailable(eigen)