bdk-blender/extern/Eigen3/eigen-update.sh
Sebastian Parborg b19c437eff Update Eigen to 3.3.7
This is in preparation for the QuadriFlow remesher lib.

Reviewed By: Brecht

Differential Revision: http://developer.blender.org/D5549
2019-08-21 14:15:28 +02:00

29 lines
719 B
Bash
Executable File

#!/bin/sh
echo "*** EIGEN#-HG Update utility"
echo "*** This gets a new eigen3-hg tree and adapts it to blenders build structure"
echo "*** Warning! This script will wipe all the header file"
if [ "x$1" = "x--i-really-know-what-im-doing" ] ; then
echo Proceeding as requested by command line ...
else
echo "*** Please run again with --i-really-know-what-im-doing ..."
exit 1
fi
# get the latest revision from repository.
hg clone http://bitbucket.org/eigen/eigen
if [ -d eigen ]
then
cd eigen
# put here the version you want to use
hg up 3.3.7
rm -f `find Eigen/ -type f -name "CMakeLists.txt"`
cp -r Eigen ..
cd ..
rm -rf eigen
else
echo "Did you install Mercurial?"
fi