Skip to content
Snippets Groups Projects
Commit 1318ecdc authored by Mark OLESEN's avatar Mark OLESEN
Browse files

COMP: skip compilation of plugins if include files are missing (fixes #464)

parent b069e42d
Branches
No related merge requests found
......@@ -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
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment