comparison armadillo-2.4.4/configure @ 0:8b6102e2a9b0

Armadillo Library
author maxzanoni76 <max.zanoni@eecs.qmul.ac.uk>
date Wed, 11 Apr 2012 09:27:06 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:8b6102e2a9b0
1 #!/bin/sh
2
3 ABORT=no
4
5 check_cmake()
6 {
7 (cmake --version) </dev/null >/dev/null 2>&1 ||
8 {
9 echo "error: cmake 2.6 must be present to configure and install Armadillo"
10 echo ""
11 echo "cmake might be available as a package for your system,"
12 echo "or can be downloaded from http://cmake.org"
13 ABORT=yes
14 }
15 }
16
17 check_cmake
18
19 test "$ABORT" = yes && exit -1
20
21 rm -f CMakeCache.txt
22 cmake .
23