diff --git a/cmake_modules/morse/find/FindBLAS.cmake b/cmake_modules/morse/find/FindBLAS.cmake index 3c6fc68f03178013c934f1f893f359672d68fda8..8dc9c56452cbcc1701ae98a985bd377e9ef44a5e 100644 --- a/cmake_modules/morse/find/FindBLAS.cmake +++ b/cmake_modules/morse/find/FindBLAS.cmake @@ -136,6 +136,9 @@ endmacro() if (NOT BLAS_FOUND) set(BLAS_DIR "" CACHE PATH "Root directory of BLAS library") + if (NOT BLAS_FIND_QUIETLY) + message(STATUS "A cache variable, namely BLAS_DIR, has been set to specify the install directory of BLAS") + endif() endif() option(BLAS_VERBOSE "Print some additional information during BLAS diff --git a/cmake_modules/morse/find/FindCBLAS.cmake b/cmake_modules/morse/find/FindCBLAS.cmake index acfd9c9fb224109cc198ab3110e0569c379a694e..16fdbd34ee9c2c107fd921975ea6d665838f56e8 100644 --- a/cmake_modules/morse/find/FindCBLAS.cmake +++ b/cmake_modules/morse/find/FindCBLAS.cmake @@ -52,6 +52,9 @@ if (NOT CBLAS_FOUND) set(CBLAS_DIR "" CACHE PATH "Root directory of CBLAS library") + if (NOT CBLAS_FIND_QUIETLY) + message(STATUS "A cache variable, namely CBLAS_DIR, has been set to specify the install directory of CBLAS") + endif() endif() diff --git a/cmake_modules/morse/find/FindCHAMELEON.cmake b/cmake_modules/morse/find/FindCHAMELEON.cmake index 2ca145bba64b0eab569022fe7a007c89dd3e8416..d4995a23806a3c42a2df47d3192bd9a82766ea38 100644 --- a/cmake_modules/morse/find/FindCHAMELEON.cmake +++ b/cmake_modules/morse/find/FindCHAMELEON.cmake @@ -50,6 +50,9 @@ if (NOT CHAMELEON_FOUND) set(CHAMELEON_DIR "" CACHE PATH "Root directory of CHAMELEON library") + if (NOT CHAMELEON_FIND_QUIETLY) + message(STATUS "A cache variable, namely CHAMELEON_DIR, has been set to specify the install directory of CHAMELEON") + endif() endif() # Try to find CHAMELEON dependencies if specified as COMPONENTS during the call diff --git a/cmake_modules/morse/find/FindFXT.cmake b/cmake_modules/morse/find/FindFXT.cmake index bb00f93fd7f0a2e0beefe517cca4323e819d8f01..abe0f2bf0dfe362ceff10412c0f483f3a20322cd 100644 --- a/cmake_modules/morse/find/FindFXT.cmake +++ b/cmake_modules/morse/find/FindFXT.cmake @@ -43,6 +43,9 @@ if (NOT FXT_FOUND) set(FXT_DIR "" CACHE PATH "Root directory of FXT library") + if (NOT FXT_FIND_QUIETLY) + message(STATUS "A cache variable, namely FXT_DIR, has been set to specify the install directory of FXT") + endif() endif() # Optionally use pkg-config to detect include/library dirs (if pkg-config is available) diff --git a/cmake_modules/morse/find/FindHWLOC.cmake b/cmake_modules/morse/find/FindHWLOC.cmake index 0455f16d0e0f20f85c4a7bca4afc75a81f135997..04b2a9aa051b2c1073e28426a5fa8ba60767c534 100644 --- a/cmake_modules/morse/find/FindHWLOC.cmake +++ b/cmake_modules/morse/find/FindHWLOC.cmake @@ -44,6 +44,9 @@ if (NOT HWLOC_FOUND) set(HWLOC_DIR "" CACHE PATH "Root directory of HWLOC library") + if (NOT HWLOC_FIND_QUIETLY) + message(STATUS "A cache variable, namely HWLOC_DIR, has been set to specify the install directory of HWLOC") + endif() endif() # Optionally use pkg-config to detect include/library dirs (if pkg-config is available) diff --git a/cmake_modules/morse/find/FindLAPACK.cmake b/cmake_modules/morse/find/FindLAPACK.cmake index 302c0d34c16bb1d72c57eabe100eb0def09ac3f8..aa04ba894b74ceba32ff5a484789544edc829a2d 100644 --- a/cmake_modules/morse/find/FindLAPACK.cmake +++ b/cmake_modules/morse/find/FindLAPACK.cmake @@ -115,6 +115,9 @@ endmacro() if (NOT LAPACK_FOUND) set(LAPACK_DIR "" CACHE PATH "Root directory of LAPACK library") + if (NOT LAPACK_FIND_QUIETLY) + message(STATUS "A cache variable, namely LAPACK_DIR, has been set to specify the install directory of LAPACK") + endif() endif (NOT LAPACK_FOUND) option(LAPACK_VERBOSE "Print some additional information during LAPACK diff --git a/cmake_modules/morse/find/FindLAPACKE.cmake b/cmake_modules/morse/find/FindLAPACKE.cmake index 112faafbba7b79ba2ff6b3624e76d4561a962a80..0cd3d768c7a3f8ba350fc8f2710cbd77320fe054 100644 --- a/cmake_modules/morse/find/FindLAPACKE.cmake +++ b/cmake_modules/morse/find/FindLAPACKE.cmake @@ -51,6 +51,9 @@ if (NOT LAPACKE_FOUND) set(LAPACKE_DIR "" CACHE PATH "Root directory of LAPACKE library") + if (NOT LAPACKE_FIND_QUIETLY) + message(STATUS "A cache variable, namely LAPACKE_DIR, has been set to specify the install directory of LAPACKE") + endif() endif() # LAPACKE depends on LAPACK diff --git a/cmake_modules/morse/find/FindMAGMA.cmake b/cmake_modules/morse/find/FindMAGMA.cmake index b1c999acbb7e336c1a11dc4d6bf7654b3c53357e..721855d924a4141d399b7ac37c42b167b1506131 100644 --- a/cmake_modules/morse/find/FindMAGMA.cmake +++ b/cmake_modules/morse/find/FindMAGMA.cmake @@ -45,6 +45,9 @@ if(NOT MAGMA_FOUND) set(MAGMA_DIR "" CACHE PATH "Root directory of MAGMA library") + if (NOT MAGMA_FIND_QUIETLY) + message(STATUS "A cache variable, namely MAGMA_DIR, has been set to specify the install directory of MAGMA") + endif() endif(NOT MAGMA_FOUND) diff --git a/cmake_modules/morse/find/FindMETIS.cmake b/cmake_modules/morse/find/FindMETIS.cmake index 3ed6c13c6ceb8fc84584b436dfa4439792f6cbf7..89a8059046e0662faa3a2aa1d02471fafdc42612 100644 --- a/cmake_modules/morse/find/FindMETIS.cmake +++ b/cmake_modules/morse/find/FindMETIS.cmake @@ -43,6 +43,12 @@ # (To distribute this file outside of Morse, substitute the full # License text for the above reference.) +if (NOT METIS_FOUND) + set(METIS_DIR "" CACHE PATH "Root directory of METIS library") + if (NOT METIS_FIND_QUIETLY) + message(STATUS "A cache variable, namely METIS_DIR, has been set to specify the install directory of METIS") + endif() +endif() # Looking for include # ------------------- diff --git a/cmake_modules/morse/find/FindPARMETIS.cmake b/cmake_modules/morse/find/FindPARMETIS.cmake index 5d40857c07e3f9e6526cc3f6ece6cca10a90e154..303b503cb26180296c0f996a2c7cbba8e4e5f720 100644 --- a/cmake_modules/morse/find/FindPARMETIS.cmake +++ b/cmake_modules/morse/find/FindPARMETIS.cmake @@ -43,6 +43,12 @@ # (To distribute this file outside of Morse, substitute the full # License text for the above reference.) +if (NOT PARMETIS_FOUND) + set(PARMETIS_DIR "" CACHE PATH "Root directory of PARMETIS library") + if (NOT PARMETIS_FIND_QUIETLY) + message(STATUS "A cache variable, namely PARMETIS_DIR, has been set to specify the install directory of PARMETIS") + endif() +endif() # PARMETIS depends on MPI # try to find it specified as COMPONENTS during the call diff --git a/cmake_modules/morse/find/FindPTSCOTCH.cmake b/cmake_modules/morse/find/FindPTSCOTCH.cmake index 6a6844b75b6c63cb191e40f949724652e969e586..104ab9f127611acf6fcabbb720f2b4a4258317eb 100644 --- a/cmake_modules/morse/find/FindPTSCOTCH.cmake +++ b/cmake_modules/morse/find/FindPTSCOTCH.cmake @@ -44,6 +44,12 @@ # (To distribute this file outside of Morse, substitute the full # License text for the above reference.) +if (NOT PTSCOTCH_FOUND) + set(PTSCOTCH_DIR "" CACHE PATH "Root directory of PTSCOTCH library") + if (NOT PTSCOTCH_FIND_QUIETLY) + message(STATUS "A cache variable, namely PTSCOTCH_DIR, has been set to specify the install directory of PTSCOTCH") + endif() +endif() # PTSCOTCH may depend on MPI and Threads # try to find it specified as COMPONENTS during the call diff --git a/cmake_modules/morse/find/FindQUARK.cmake b/cmake_modules/morse/find/FindQUARK.cmake index 55005c53846ff8a5dcbe3363d286b2a71754f6e7..fff744c098374508ce60d39be2f37885b8d48587 100644 --- a/cmake_modules/morse/find/FindQUARK.cmake +++ b/cmake_modules/morse/find/FindQUARK.cmake @@ -46,6 +46,9 @@ if (NOT QUARK_FOUND) set(QUARK_DIR "" CACHE PATH "Root directory of QUARK library") + if (NOT QUARK_FIND_QUIETLY) + message(STATUS "A cache variable, namely QUARK_DIR, has been set to specify the install directory of QUARK") + endif() endif() # QUARK may depend on HWLOC diff --git a/cmake_modules/morse/find/FindSCOTCH.cmake b/cmake_modules/morse/find/FindSCOTCH.cmake index 12a2b3bd7b29458f43f89ad2185d1ecdb2d1acee..39843035b2ec355179c6e7d5de0bbf42061b74f4 100644 --- a/cmake_modules/morse/find/FindSCOTCH.cmake +++ b/cmake_modules/morse/find/FindSCOTCH.cmake @@ -44,6 +44,12 @@ # (To distribute this file outside of Morse, substitute the full # License text for the above reference.) +if (NOT SCOTCH_FOUND) + set(SCOTCH_DIR "" CACHE PATH "Root directory of SCOTCH library") + if (NOT SCOTCH_FIND_QUIETLY) + message(STATUS "A cache variable, namely SCOTCH_DIR, has been set to specify the install directory of SCOTCH") + endif() +endif() # SCOTCH may depend on Threads # try to find it specified as COMPONENTS during the call diff --git a/cmake_modules/morse/find/FindSTARPU.cmake b/cmake_modules/morse/find/FindSTARPU.cmake index 7717fa7e77870a82947d76835f2c038d2fc35c6d..4979773111d664825521fbaa35754ef99eec3bad 100644 --- a/cmake_modules/morse/find/FindSTARPU.cmake +++ b/cmake_modules/morse/find/FindSTARPU.cmake @@ -52,6 +52,9 @@ if (NOT STARPU_FOUND) set(STARPU_DIR "" CACHE PATH "Root directory of STARPU library") + if (NOT STARPU_FIND_QUIETLY) + message(STATUS "A cache variable, namely STARPU_DIR, has been set to specify the install directory of STARPU") + endif() endif() # STARPU may depend on other packages (HWLOC, MPI, CUDA, MAGMA, ...) diff --git a/cmake_modules/morse/find/FindTMG.cmake b/cmake_modules/morse/find/FindTMG.cmake index 8c2886daf5fa04af12226ebbcec481f6effd388d..0ad1d3c21d08e4b95ef5685680da35b9fecb440c 100644 --- a/cmake_modules/morse/find/FindTMG.cmake +++ b/cmake_modules/morse/find/FindTMG.cmake @@ -45,7 +45,10 @@ if (NOT TMG_FOUND) - set(TMG_DIR "" CACHE PATH "Root directory of TMG library") + set(TMG_DIR "" CACHE PATH "Root directory of TMG library") + if (NOT TMG_FIND_QUIETLY) + message(STATUS "A cache variable, namely TMG_DIR, has been set to specify the install directory of TMG") + endif() endif()