FindMPI: Set correct variables for calls to FPHSA
Since FPHSA is called for multiple compiler languages with "MPI_${lang}" rather than just "MPI", make sure variables for controlling QUIET, REQUIRED and VERSION are propagated with names prefixed by MPI_${lang} as well, rather than just MPI. The find_package call sets up the values of MPI_FIND_REQUIRED and friends, but these calls to FPHSA need MPI_${lang}_FIND_REQUIRED and friends in order to function as intended.
This commit is contained in:
parent
7892c87464
commit
8b7a5c6166
|
@ -576,6 +576,11 @@ foreach (lang C CXX Fortran)
|
||||||
try_regular_compiler(${lang} regular_compiler_worked)
|
try_regular_compiler(${lang} regular_compiler_worked)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
set(MPI_${lang}_FIND_QUIETLY ${MPI_FIND_QUIETLY})
|
||||||
|
set(MPI_${lang}_FIND_REQUIRED ${MPI_FIND_REQUIRED})
|
||||||
|
set(MPI_${lang}_FIND_VERSION ${MPI_FIND_VERSION})
|
||||||
|
set(MPI_${lang}_FIND_VERSION_EXACT ${MPI_FIND_VERSION_EXACT})
|
||||||
|
|
||||||
if (regular_compiler_worked)
|
if (regular_compiler_worked)
|
||||||
find_package_handle_standard_args(MPI_${lang} DEFAULT_MSG MPI_${lang}_COMPILER)
|
find_package_handle_standard_args(MPI_${lang} DEFAULT_MSG MPI_${lang}_COMPILER)
|
||||||
else()
|
else()
|
||||||
|
|
Loading…
Reference in New Issue