Skip to content

Commit

Permalink
fix in progress on cmake
Browse files Browse the repository at this point in the history
  • Loading branch information
EmanueleGiacomini committed Jun 11, 2024
1 parent 416df80 commit cecdd43
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions mad_icp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +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 DEFINED Eigen3_DIR)
message("Eigen3_DIR is not defined")
else()
message("Eigen3_DIR is defined")
message("Its value is ${Eigen3_DIR}")
endif()

if(NOT DEFINED Eigen3_DIR)
if(${Eigen3_DIR} STREQUAL "Eigen3_DIR-NOTFOUND")
message(CHECK_START "Fetching Eigen3")
list(APPEND CMAKE_MESSAGE_INDENT " ")

Expand Down

0 comments on commit cecdd43

Please sign in to comment.