From: Bruno Turcksin Date: Sun, 10 Jul 2016 03:58:12 +0000 (-0400) Subject: Enable to turn python wrapper off. X-Git-Tag: v8.5.0-rc1~809^2~8 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1a7a80ee967f8d13aa8b0309051a2bf67d0e56c5;p=dealii.git Enable to turn python wrapper off. --- diff --git a/source/CMakeLists.txt b/source/CMakeLists.txt index 7075734e5f..3da4617522 100644 --- a/source/CMakeLists.txt +++ b/source/CMakeLists.txt @@ -48,7 +48,9 @@ ADD_SUBDIRECTORY(integrators) ADD_SUBDIRECTORY(matrix_free) ADD_SUBDIRECTORY(meshworker) ADD_SUBDIRECTORY(opencascade) -ADD_SUBDIRECTORY(python) +IF(DEAL_II_WITH_PYTHON) + ADD_SUBDIRECTORY(python) +ENDIF() FOREACH(build ${DEAL_II_BUILD_TYPES}) STRING(TOLOWER ${build} build_lowercase)