From 721f3c88bba28ffc274ace2fde2034f64ee44a25 Mon Sep 17 00:00:00 2001 From: Lars Bilke <lars.bilke@ufz.de> Date: Wed, 15 Feb 2017 08:00:17 +0100 Subject: [PATCH] [CMake] Removed user-setable option OGS_USE_MPI. --- CMakeLists.txt | 3 --- Tests/CMakeLists.txt | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 158309cfb0f..616c4d2b2b3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -78,9 +78,6 @@ option(OGS_USE_LIS "Use Lis" OFF) # Parallel computing: vector and matrix algebraic caculation, solvers option(OGS_USE_PETSC "Use PETSc routines" OFF) -# Paralleization -option(OGS_USE_MPI "Use MPI" OFF) - # Eigen option(OGS_USE_EIGEN "Use Eigen linear solver" ON) option(OGS_USE_EIGEN_UNSUPPORTED "Use Eigen unsupported modules" ON) diff --git a/Tests/CMakeLists.txt b/Tests/CMakeLists.txt index 5d93e293cc2..c6c0d1e9490 100644 --- a/Tests/CMakeLists.txt +++ b/Tests/CMakeLists.txt @@ -28,7 +28,7 @@ if(OGS_BUILD_SWMM) APPEND_SOURCE_FILES(TEST_SOURCES FileIO_SWMM) endif() -if(OGS_USE_PETSC OR OGS_USE_MPI) +if(OGS_USE_PETSC) list(REMOVE_ITEM TEST_SOURCES NumLib/TestSerialLinearSolver.cpp) endif() -- GitLab