mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
COMP: add debug flag for repeating runTimePostProcessing rebuilds
- avoids removal of files and the dummy fallback
This commit is contained in:
@ -7,7 +7,7 @@ cd ${0%/*} || exit 1 # Run from this directory
|
|||||||
echo "======================================================================"
|
echo "======================================================================"
|
||||||
echo "${PWD##*/} : $PWD"
|
echo "${PWD##*/} : $PWD"
|
||||||
|
|
||||||
unset depend
|
unset depend runTimePostProDebug
|
||||||
|
|
||||||
if [ -d "$VTK_DIR" ]
|
if [ -d "$VTK_DIR" ]
|
||||||
then
|
then
|
||||||
@ -17,9 +17,12 @@ then
|
|||||||
depend="ParaView_DIR=$ParaView_DIR"
|
depend="ParaView_DIR=$ParaView_DIR"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Or force use of dummy only
|
# Force use of dummy only
|
||||||
# unset depend
|
# unset depend
|
||||||
|
|
||||||
|
# For rebuilding (on error) instead of dropping back to dummy
|
||||||
|
# runTimePostProDebug=true
|
||||||
|
|
||||||
if [ "$targetType" = objects ]
|
if [ "$targetType" = objects ]
|
||||||
then
|
then
|
||||||
depend=ignore
|
depend=ignore
|
||||||
@ -31,7 +34,10 @@ then
|
|||||||
echo
|
echo
|
||||||
echo " WARNING: incomplete build of VTK-based post-processing"
|
echo " WARNING: incomplete build of VTK-based post-processing"
|
||||||
echo
|
echo
|
||||||
depend="dummy"
|
if [ -z "$runTimePostProDebug" ]
|
||||||
|
then
|
||||||
|
depend="dummy"
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
echo "==> skip runTimePostProcessing (needs cmake)"
|
echo "==> skip runTimePostProcessing (needs cmake)"
|
||||||
|
|||||||
Reference in New Issue
Block a user