cmake find_package(SuiteSparse) examples

CGAL/cgal Installation/cmake/modules/FindSuiteSparse.cmake :47

##   ( 1 ) find_package(SuiteSparse) ## metis is not search by default because it's not a part of suitesparse (suitesparse can be built without metis)

CGAL/cgal Installation/cmake/modules/FindSuiteSparse.cmake :48

##   ( 2 ) find_package(SuiteSparse COMPONENTS metis CHOLMOD) 		## be careful, components are case sensitive

CGAL/cgal Installation/cmake/modules/FindSuiteSparse.cmake :49

##   ( 3 ) find_package(SuiteSparse COMPONENTS metis suitesparse)	## valid on windows (linux have no suitesparse library)

CGAL/cgal Installation/cmake/modules/FindSuiteSparse.cmake :50

##   ( 4 ) find_package(SuiteSparse COMPONENTS suitesparse)

CGAL/cgal Installation/cmake/modules/FindSuiteSparse.cmake :300

## Default behavior if user don't use the COMPONENTS flag in find_package(SuiteSparse ...) command

CGAL/cgal Surface_mesh_parameterization/examples/Surface_mesh_parameterization/CMakeLists.txt :20

find_package(SuiteSparse QUIET NO_MODULE)# 1st: Try to locate the *config.cmake file.

CGAL/cgal Surface_mesh_parameterization/examples/Surface_mesh_parameterization/CMakeLists.txt :23

find_package(SuiteSparse QUIET) # 2nd: Use FindSuiteSparse.cmake module

mfem/mfem CMakeLists.txt :348

find_package(SuiteSparse REQUIRED
  UMFPACK KLU AMD BTF CHOLMOD COLAMD CAMD CCOLAMD config)