Welcome to mirror list, hosted at ThFree Co, Russian Federation.

eigen-update.sh « Eigen3 « extern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9d22098c4fda5f20656610a995c63363d05f05c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/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.2.7
    rm -f `find Eigen/ -type f -name "CMakeLists.txt"`
    cp -r Eigen ..
    cd ..
    rm -rf eigen
else
    echo "Did you install Mercurial?"
fi