Skip to content
Snippets Groups Projects
Commit 11596fe4 authored by Tobias Malkmus's avatar Tobias Malkmus
Browse files

[cmake] Use MPI_C_* instead of MPI_CXX_*

Use output of find_package(MPI) consistent.
parent d9c83729
No related branches found
No related tags found
No related merge requests found
......@@ -20,8 +20,8 @@
find_package(MPI)
find_package(Threads)
if(MPI_CXX_FOUND)
set(HAVE_MPI ${MPI_CXX_FOUND})
if(MPI_C_FOUND)
set(HAVE_MPI ${MPI_C_FOUND})
# We do not support the CXX bindings of MPI
set(MPI_DUNE_COMPILE_FLAGS ${MPI_C_COMPILE_FLAGS} CACHE STRING
"Compile flags used by DUNE when compiling MPI programs")
......@@ -70,7 +70,7 @@ if(MPI_CXX_FOUND)
if(NOT MPI_VERSION_SUPPORTED)
MESSAGE(WARNING "Support for your MPI implementation is DEPRECATED and will be removed after the next release. Please upgrade to an MPI-2.1 compliant version.")
endif()
endif(MPI_CXX_FOUND)
endif(MPI_C_FOUND)
# adds MPI flags to the targets
function(add_dune_mpi_flags)
......@@ -80,7 +80,7 @@ function(add_dune_mpi_flags)
else()
set(_prefix TARGET)
endif()
if(MPI_CXX_FOUND)
if(MPI_C_FOUND)
set_property(${_prefix} ${ADD_MPI_UNPARSED_ARGUMENTS} APPEND PROPERTY COMPILE_FLAGS ${MPI_DUNE_COMPILE_FLAGS})
set_property(${_prefix} ${ADD_MPI_UNPARSED_ARGUMENTS} APPEND PROPERTY COMPILE_DEFINITIONS ENABLE_MPI=1
MPICH_SKIP_MPICXX MPIPP_H)
......@@ -90,5 +90,5 @@ function(add_dune_mpi_flags)
target_link_libraries(${target} ${MPI_DUNE_LIBRARIES})
endforeach(target ${ADD_MPI_UNPARSED_ARGUMENTS})
endif(NOT (ADD_MPI_SOURCE_ONLY OR ADD_MPI_OBJECT))
endif(MPI_CXX_FOUND)
endif(MPI_C_FOUND)
endfunction(add_dune_mpi_flags)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment