summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2019-06-19 11:26:22 (GMT)
committerBrad King <brad.king@kitware.com>2019-06-19 11:26:22 (GMT)
commit1ca4be5d90b47894f6742d390796ec3b08001906 (patch)
treee81846bc8cd5eff604163fdad983868f08194df3 /Modules
parent65fc109dc62ef4853c010e06a938069e0bfc8c50 (diff)
parentf7eaa342de316707d99e6ae29c693a480861560d (diff)
downloadCMake-1ca4be5d90b47894f6742d390796ec3b08001906.zip
CMake-1ca4be5d90b47894f6742d390796ec3b08001906.tar.gz
CMake-1ca4be5d90b47894f6742d390796ec3b08001906.tar.bz2
Merge branch 'FindMPI-imported-link-flags' into release-3.15
Merge-request: !3449
Diffstat (limited to 'Modules')
-rw-r--r--Modules/FindMPI.cmake4
1 files changed, 3 insertions, 1 deletions
diff --git a/Modules/FindMPI.cmake b/Modules/FindMPI.cmake
index fe09764..a80f799 100644
--- a/Modules/FindMPI.cmake
+++ b/Modules/FindMPI.cmake
@@ -1144,7 +1144,9 @@ macro(_MPI_create_imported_target LANG)
set_property(TARGET MPI::MPI_${LANG} PROPERTY INTERFACE_LINK_LIBRARIES "")
if(MPI_${LANG}_LINK_FLAGS)
- set_property(TARGET MPI::MPI_${LANG} APPEND PROPERTY INTERFACE_LINK_LIBRARIES "${MPI_${LANG}_LINK_FLAGS}")
+ separate_arguments(_MPI_${LANG}_LINK_FLAGS NATIVE_COMMAND "${MPI_${LANG}_LINK_FLAGS}")
+ set_property(TARGET MPI::MPI_${LANG} APPEND PROPERTY INTERFACE_LINK_LIBRARIES "${_MPI_${LANG}_LINK_FLAGS}")
+ unset(_MPI_${LANG}_LINK_FLAGS)
endif()
# If the compiler links MPI implicitly, no libraries will be found as they're contained within
# CMAKE_<LANG>_IMPLICIT_LINK_LIBRARIES already.