Skip to content

Commit

Permalink
debug CI 13
Browse files Browse the repository at this point in the history
  • Loading branch information
shutsch committed Feb 23, 2024
1 parent 903095e commit 7190e09
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ if (IMAGINEMODELS_USE_AUTODIFF)
if(NOT EXISTS ${EIGEN_PATH})
message("The Eigen3 submodule was not found! Please run 'git submodule update --init' OR set the EIGEN_PATH variable to the eigen header files manually. Will proceed with autodifferentiation disabled." )
set(IMAGINEMODELS_USE_AUTODIFF OFF)
set(autodiff_FOUND OFF)
else()
message("-- Eigen3 library found as a submodule at ${EIGEN_PATH}. Trying to find autodiff now.")
set(Eigen3_FOUND ON)
Expand All @@ -84,6 +85,7 @@ if (IMAGINEMODELS_USE_AUTODIFF)
if(NOT EXISTS ${INTERNAL_findautodiff_DIR})
message("The autodiff submodule was not found! Please run 'git submodule update --init'. Alternatively you can install autodiff globally on your system." )
set(IMAGINEMODELS_USE_AUTODIFF OFF)
set(autodiff_FOUND OFF)
else()
add_subdirectory(${INTERNAL_findautodiff_DIR})
message("-- autodiff library found as a submodule. Tests will be compiled.")
Expand Down

0 comments on commit 7190e09

Please sign in to comment.