Skip to content

Commit

Permalink
fix: require Eigen 3.4
Browse files Browse the repository at this point in the history
STL iterators and C++20 compatibility was only added in Eigen 3.4
  • Loading branch information
hmenke authored and Wentzell committed Sep 21, 2023
1 parent 43ed661 commit b795e3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion c++/triqs_Nevanlinna/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} DESTINATION include FILES_MATCHING

# ========= Library Dependencies ==========

find_package(Eigen3 REQUIRED)
find_package (Eigen3 3.4 REQUIRED CONFIG)
target_link_libraries(${PROJECT_NAME}_c PUBLIC Eigen3::Eigen)

find_package(Boost REQUIRED)
Expand Down

0 comments on commit b795e3d

Please sign in to comment.