Skip to content

Commit

Permalink
fixes #43
Browse files Browse the repository at this point in the history
  • Loading branch information
goulart-paul committed Jan 13, 2025
1 parent 29c654c commit 9b51a2d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ option(CLARABEL_FEATURE_SERDE "Enable `faer-sparse` option" OFF)

# Eigen3
if (NOT TARGET Eigen3::Eigen)
find_package(Eigen3 CONFIG REQUIRED)
message(STATUS "Clarabel.cpp: `Eigen3` package found.")
find_package(Eigen3 CONFIG REQUIRED VERSION 3.4)
message(STATUS "Clarabel.cpp: `Eigen3` package found. Version ${Eigen3_VERSION}.")
else()
message(STATUS "Clarabel.cpp: `Eigen3` package already exists.")
message(STATUS "Clarabel.cpp: `Eigen3` package already exists. Version ${Eigen3_VERSION}.")
endif()

# Build the Rust library
Expand Down

0 comments on commit 9b51a2d

Please sign in to comment.