Skip to content

Commit

Permalink
use latest Eigen (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
koide3 authored May 8, 2024
1 parent d986a77 commit eec9c4a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ endif()
find_package(Eigen3 CONFIG)

if(NOT Eigen3_FOUND)
message(STATUS "System Eigen not found. Download Eigen 3.3.9.")
message(STATUS "System Eigen not found. Download Eigen 3.4.0.")
include(FetchContent)
FetchContent_Populate(
Eigen3
URL https://gitlab.com/libeigen/eigen/-/archive/3.3.9/eigen-3.3.9.tar.gz
URL https://gitlab.com/libeigen/eigen/-/archive/3.4.0/eigen-3.4.0.tar.gz
)
add_library(Eigen3::Eigen INTERFACE IMPORTED GLOBAL)
set_target_properties(Eigen3::Eigen PROPERTIES
Expand Down

0 comments on commit eec9c4a

Please sign in to comment.