--- src/cvode/CMakeLists.txt.orig 2017-11-07 23:47:57 UTC +++ src/cvode/CMakeLists.txt @@ -114,6 +114,18 @@ IF(BUILD_SHARED_LIBS) TARGET_LINK_LIBRARIES(sundials_cvode_shared m) ENDIF() + IF(UNIX) + TARGET_LINK_LIBRARIES(sundials_cvode_shared m) + ENDIF() + + IF(LAPACK_FOUND) + TARGET_LINK_LIBRARIES(sundials_cvode_shared ${LAPACK_LIBRARIES}) + ENDIF() + + IF(KLU_FOUND) + TARGET_LINK_LIBRARIES(sundials_cvode_shared ${KLU_LIBRARIES}) + ENDIF () + # Set the library name and make sure it is not deleted SET_TARGET_PROPERTIES(sundials_cvode_shared PROPERTIES OUTPUT_NAME sundials_cvode CLEAN_DIRECT_OUTPUT 1)