From f895c934e7d328499b254f7653b9c95401c04c61 Mon Sep 17 00:00:00 2001 From: Mark Olesen <Mark.Olesen@esi-group.com> Date: Fri, 5 May 2017 10:14:48 +0200 Subject: [PATCH] COMP: skip compilation of plugins if include files are missing (fixes #464) --- .../utilities/postProcessing/graphics/PVReaders/Allwmake | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/applications/utilities/postProcessing/graphics/PVReaders/Allwmake b/applications/utilities/postProcessing/graphics/PVReaders/Allwmake index df34613a03a..5d88f0b4e69 100755 --- a/applications/utilities/postProcessing/graphics/PVReaders/Allwmake +++ b/applications/utilities/postProcessing/graphics/PVReaders/Allwmake @@ -25,6 +25,14 @@ canBuildPlugin() return 1 } + [ -d "$ParaView_INCLUDE_DIR" ] && \ + [ -f "$ParaView_INCLUDE_DIR/pqServerManagerModel.h" ] || { + echo "==> cannot build ParaView plugins without an include directory" + echo " ... or without GUI support" + echo " ParaView_INCLUDE_DIR=$ParaView_INCLUDE_DIR" + return 1 + } + type cmake > /dev/null 2>&1 || { echo "==> cannot build ParaView plugins without cmake" return 1 -- GitLab