The libigl team recently restructured their module. Therefore libigl.cmake no longer resides in ${LIBIGL_INCLUDE_DIR}/../shared/cmake. It is now located in ${LIBIGL_INCLUDE_DIR}/../cmake. To maintain compatibility with old versions, I just added
list(APPEND CMAKE_MODULE_PATH "${LIBIGL_INCLUDE_DIR}/../cmake"), so it should work with the recent version as well as the legacy version of libigl.
The libigl team recently restructured their module. Therefore libigl.cmake no longer resides in
${LIBIGL_INCLUDE_DIR}/../shared/cmake
. It is now located in${LIBIGL_INCLUDE_DIR}/../cmake
. To maintain compatibility with old versions, I just addedlist(APPEND CMAKE_MODULE_PATH "${LIBIGL_INCLUDE_DIR}/../cmake")
, so it should work with the recent version as well as the legacy version of libigl.