nmoehrle / mvs-texturing

Algorithm to texture 3D reconstructions from multi-view stereo images
Other
931 stars 328 forks source link

Changing unavailable eigen source #153

Closed marinagmoreira closed 3 years ago

marinagmoreira commented 3 years ago

The link https://bitbucket.org/eigen/eigen/get/3.3.2.tar.gz does not work anymore. I changed it to the one in the official eigen website http://eigen.tuxfamily.org/index.php?title=Main_Page pointing to https://gitlab.com/libeigen/eigen/-/releases

xychen5 commented 3 years ago

i fix this by replace the file content: texrecon/elib/CMakeLists.txt:Line23to31 with bellowing:

23 externalproject_add(ext_eigen 24 PREFIX ext_eigen 25 GIT_REPOSITORY https://gitlab.com/libeigen/eigen.git 26 GIT_TAG 3.3.7
27 SOURCE_DIR ${CMAKE_SOURCE_DIR}/elibs/eigen 28 CONFIGURE_COMMAND "" 29 BUILD_COMMAND "" 30 INSTALL_COMMAND "" 31 )