mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
extendedFeatureEdgeMesh: Add function to find all feature points within a sphere treeDataPoint: Add support for point overlap test
34 lines
661 B
Bash
Executable File
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
|