Skip to content
Snippets Groups Projects
Commit b7336e09 authored by Timo Koch's avatar Timo Koch
Browse files

Merge branch 'fix/cmake-suitesparse' into 'master'

[cmake][suitesparse] Consistent packges in suitesparse

See merge request !1513
parents bdafe9f5 d4b8153b
No related branches found
No related tags found
1 merge request!1513[cmake][suitesparse] Consistent packges in suitesparse
Pipeline #77579 waiting for manual action
......@@ -131,11 +131,13 @@ foreach(_component ${SUITESPARSE_COMPONENTS})
find_library(${_component}_LIBRARY "${_componentLower}"
HINTS ${SUITESPARSE_LIB_DIR}
PATH_SUFFIXES "${_component}/Lib"
NO_DEFAULT_PATH
)
# look for header file of the component
find_path(${_component}_INCLUDE_DIR "${_componentLower}.h"
HINTS ${SUITESPARSE_INCLUDE_DIR}
PATH_SUFFIXES "suitesparse" "include" "${_component}/Include"
NO_DEFAULT_PATH
)
mark_as_advanced(${_component}_INCLUDE_DIR ${_component}_LIBRARY)
......@@ -145,14 +147,18 @@ endforeach()
find_path(SPQR_INCLUDE_DIR "SuiteSparseQR.hpp"
HINTS ${SUITESPARSE_INCLUDE_DIR}
PATH_SUFFIXES "suitesparse" "include" "SPQR/Include"
NO_DEFAULT_PATH
)
find_path(Mongoose_INCLUDE_DIR "Mongoose.hpp"
HINTS ${SUITESPARSE_INCLUDE_DIR}
PATH_SUFFIXES "suitesparse" "include" "Mongoose/Include"
NO_DEFAULT_PATH
)
find_path(GraphBLAS_INCLUDE_DIR "GraphBLAS.h"
HINTS ${SUITESPARSE_INCLUDE_DIR}
PATH_SUFFIXES "suitesparse" "include" "GraphBLAS/Include"
NO_DEFAULT_PATH
)
# check version of SuiteSparse
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment