summaryrefslogtreecommitdiff
path: root/Tests/FindMPI
diff options
context:
space:
mode:
authorChristian Pfeiffer <cpfeiffer@live.de>2017-06-30 15:43:49 +0200
committerChristian Pfeiffer <cpfeiffer@live.de>2017-09-15 14:55:08 +0200
commit2f673da69f51cf6d5ef7fce4ea3b18762502adb3 (patch)
tree7a5932897eefa6ef7d3799f89415053007dec068 /Tests/FindMPI
parent9a58e69cc8a9eea2e4f4ff0e65e7b1df909221ac (diff)
downloadcmake-2f673da69f51cf6d5ef7fce4ea3b18762502adb3.tar.gz
FindMPI: Support components for various languages
Diffstat (limited to 'Tests/FindMPI')
-rw-r--r--Tests/FindMPI/Test/CMakeLists.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/Tests/FindMPI/Test/CMakeLists.txt b/Tests/FindMPI/Test/CMakeLists.txt
index 3910c254f5..efe8c6261d 100644
--- a/Tests/FindMPI/Test/CMakeLists.txt
+++ b/Tests/FindMPI/Test/CMakeLists.txt
@@ -20,12 +20,17 @@ foreach(c C CXX Fortran)
endif()
endforeach()
+set(MPI_CXX_SKIP_MPICXX TRUE)
+set(MPI_CXX_VALIDATE_SKIP_MPICXX TRUE)
find_package(MPI REQUIRED)
foreach(c C CXX Fortran)
if(NOT "${MPI_TEST_${c}}")
continue()
endif()
+ if(${c} STREQUAL CXX AND MPI_MPICXX_FOUND)
+ message(FATAL_ERROR "Could not suppress MPI-2 C++ bindings for this MPI.")
+ endif()
source_code_mapper_helper(${c})
add_executable(test_tgt_${c} ${MPITEST_SOURCE_FILE})
target_link_libraries(test_tgt_${c} MPI::MPI_${c})