Lines Matching refs:LAPACK
100 OPTION(LAPACK "Enable use of LAPACK." ON) option
264 # LAPACK (& BLAS).
265 IF (LAPACK)
266 FIND_PACKAGE(LAPACK QUIET)
268 MESSAGE("-- Found LAPACK library: ${LAPACK_LIBRARIES}")
270 MESSAGE("-- Did not find LAPACK library, disabling LAPACK support.")
277 MESSAGE("-- Did not find BLAS library, disabling LAPACK support.")
281 UPDATE_CACHE_VARIABLE(LAPACK OFF)
284 ELSE (LAPACK)
285 MESSAGE("-- Building without LAPACK.")
287 ENDIF (LAPACK)
290 IF (SUITESPARSE AND NOT LAPACK)
291 # If user has disabled LAPACK, but left SUITESPARSE ON, turn it OFF,
292 # LAPACK controls whether Ceres will be linked, directly or indirectly
293 # via SuiteSparse to LAPACK.
294 MESSAGE("-- Disabling SuiteSparse as use of LAPACK has been disabled, "
295 "turn ON LAPACK to enable (optional) building with SuiteSparse.")
297 ENDIF (SUITESPARSE AND NOT LAPACK)