Files
openfoam/applications/utilities/surface/surfaceFeatureExtract/Allwmake
laurence dbc7526abb ENH: surfaceFeatureExtract now builds with CGAL support for curvature
extendedFeatureEdgeMesh: Add function to find all feature points within a sphere
treeDataPoint: Add support for point overlap test
2012-03-16 11:21:43 +00:00

34 lines
661 B
Bash
Executable File

#!/bin/sh
cd ${0%/*} || exit 1 # run from this directory
set -x
if [ ! -e "Make/files" ] || [ ! -e "Make/options" ]
then
mkdir -p Make
if [ -n "$CGAL_ARCH_PATH" ]
then
cp -r MakeWithCGAL/* Make
echo
echo Compiling surfaceFeatureExtract with CGAL support for curvature
echo
wmake
else
cp -r MakeWithoutCGAL/* Make
echo
echo Compiling surfaceFeatureExtract without CGAL support for curvature
echo
wmake
fi
else
echo surfaceFeatureExtract already has a Make folder
fi
# ----------------------------------------------------------------- end-of-file