From 1a7a80ee967f8d13aa8b0309051a2bf67d0e56c5 Mon Sep 17 00:00:00 2001 From: Bruno Turcksin Date: Sat, 9 Jul 2016 23:58:12 -0400 Subject: [PATCH] Enable to turn python wrapper off. --- source/CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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) -- 2.39.5