From: maier Date: Thu, 28 Feb 2013 08:36:24 +0000 (+0000) Subject: Don't use mpicxx by default. We already set up all relevant compiler flags and librar... X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=12d1ecb151a203ab2658ff2b02d16aa10ac887e6;p=dealii-svn.git Don't use mpicxx by default. We already set up all relevant compiler flags and libraries by hand git-svn-id: https://svn.dealii.org/branches/branch_cmake@28639 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/cmake/configure/configure_1_mpi.cmake b/deal.II/cmake/configure/configure_1_mpi.cmake index 0f079f4cfb..78335ea351 100644 --- a/deal.II/cmake/configure/configure_1_mpi.cmake +++ b/deal.II/cmake/configure/configure_1_mpi.cmake @@ -40,14 +40,13 @@ MACRO(FEATURE_MPI_CONFIGURE_EXTERNAL) # The user has to know the location of the mpi headers as well: LIST(APPEND DEAL_II_USER_INCLUDE_DIRS ${MPI_CXX_INCLUDE_PATH}) - # TODO: - SET(DEAL_II_USE_MPICXX ON CACHE BOOL + SET(DEAL_II_USE_MPICXX OFF CACHE BOOL # Disabled by default "Set the compiler to the detected mpi wrapper ${MPI_CXX_COMPILER}" ) - IF(DEAL_II_USE_MPICXX) SET(CMAKE_CXX_COMPILER ${MPI_CXX_COMPILER}) ENDIF() + ENDMACRO()