From 7f6ca43e68cf902e8ff826eb9c9fd35938cfacb9 Mon Sep 17 00:00:00 2001 From: Robert Falkenberg Date: Tue, 1 Mar 2022 15:08:28 +0100 Subject: [PATCH] cmake,MKL: fix cmake warning: (mkl) does not match the name of the calling package (MKL) --- cmake/modules/FindMKL.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/modules/FindMKL.cmake b/cmake/modules/FindMKL.cmake index 089c54c15..f64a1a9a9 100644 --- a/cmake/modules/FindMKL.cmake +++ b/cmake/modules/FindMKL.cmake @@ -49,7 +49,7 @@ set(MKL_INCLUDE_DIRS ${MKL_INCLUDE_DIR} ${MKL_FFTW_INCLUDE_DIR}) include(FindPackageHandleStandardArgs) # handle the QUIETLY and REQUIRED arguments and set MKL_FOUND to TRUE # if all listed variables are TRUE -find_package_handle_standard_args(mkl DEFAULT_MSG +find_package_handle_standard_args(MKL DEFAULT_MSG MKL_LIBRARIES MKL_CORE MKL_ILP MKL_SEQ MKL_INCLUDE_DIRS) if(MKL_FOUND)