openfoam/applications/utilities/surface/surfaceBooleanFeatures/Allwmake

19 lines
481 B
Bash
Executable File

#!/bin/sh
cd ${0%/*} || exit 1 # Run from this directory
unset COMP_FLAGS LINK_FLAGS
if [ -f "$CGAL_ARCH_PATH/include/CGAL/version.h" ] || \
[ "${CGAL_ARCH_PATH##*-}" = system -a -f /usr/include/CGAL/version.h ]
then
wmake PolyhedronReader
export COMP_FLAGS='-IPolyhedronReader'
export LINK_FLAGS='${CGAL_LIBS} -lPolyhedronReader'
else
export COMP_FLAGS="-DNO_CGAL"
fi
wmake
#------------------------------------------------------------------------------