Skip to content

Commit

Permalink
Added FetchContent option for Eigen
Browse files Browse the repository at this point in the history
  • Loading branch information
EmanueleGiacomini committed Jun 10, 2024
1 parent 228d23a commit 074da52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mad_icp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ option(COMPILE_CPP_APPS "Set to ON to compile C++ applications" OFF)
# TODO: Detect if Eigen exists in system, oterwhise, download it through FetchContent
find_package(Eigen3 3.3 NO_MODULE)

if(not Eigen3_FOUND)
if(NOT DEFINED Eigen3_FOUND)
message(CHECK_START "Fetching Eigen3")
list(APPEND CMAKE_MESSAGE_INDENT " ")

Expand Down

0 comments on commit 074da52

Please sign in to comment.