ENH: Remove dependencies on CGAL because of new curvature calculation method

This commit is contained in:
laurence
2013-05-31 12:42:38 +01:00
parent d716c9c2f2
commit 0a7eada21b
4 changed files with 0 additions and 416 deletions

View File

@ -1,30 +0,0 @@
#!/bin/sh
cd ${0%/*} || exit 1 # run from this directory
set -x
if [ -n "$CGAL_ARCH_PATH" ]
then
echo
echo "Compiling surfaceFeatureExtract with CGAL curvature support"
echo
wmake "ENABLE_CURVATURE=-DENABLE_CURVATURE \
EXE_FROUNDING_MATH=-frounding-math \
USE_F2C=-DCGAL_USE_F2C \
CGAL_LIBDIR=-L$CGAL_ARCH_PATH/lib \
LAPACK_LIB=-llapack \
BLAS_LIB=-lblas \
CGAL_LIB=-lCGAL \
CGAL_BOOST_LIB=-lboost_thread \
CGAL_MPFR_LIB=-lmpfr"
else
echo
echo "Compiling surfaceFeatureExtract without CGAL curvature support"
echo
wmake
fi
# ----------------------------------------------------------------- end-of-file