From 4d0d19b0f7a70cc9e5d5117e4219a8084d9a77ab Mon Sep 17 00:00:00 2001 From: Denis Rouzaud Date: Thu, 28 Jun 2018 21:55:38 +0200 Subject: [PATCH] fix build without gui but with bindings console and plugin installed are gui components --- python/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/CMakeLists.txt b/python/CMakeLists.txt index f836ec8da66..de51d3a3fe2 100644 --- a/python/CMakeLists.txt +++ b/python/CMakeLists.txt @@ -60,10 +60,10 @@ ENDMACRO(PY_2TO3) ADD_SUBDIRECTORY(plugins) IF (WITH_GUI) ADD_SUBDIRECTORY(qsci_apis) + ADD_SUBDIRECTORY(console) + ADD_SUBDIRECTORY(pyplugin_installer) ENDIF () -ADD_SUBDIRECTORY(console) ADD_SUBDIRECTORY(PyQt) -ADD_SUBDIRECTORY(pyplugin_installer) ADD_SUBDIRECTORY(ext-libs) ADD_SUBDIRECTORY(testing)