Mercurial > hg > segmenter-vamp-plugin
annotate armadillo-2.4.4/configure @ 36:cc18e9a13fe8 slimline
Fix failure to set hasTimestamp on final part
author | Chris Cannam |
---|---|
date | Wed, 16 May 2012 11:44:39 +0100 |
parents | 8b6102e2a9b0 |
children |
rev | line source |
---|---|
max@0 | 1 #!/bin/sh |
max@0 | 2 |
max@0 | 3 ABORT=no |
max@0 | 4 |
max@0 | 5 check_cmake() |
max@0 | 6 { |
max@0 | 7 (cmake --version) </dev/null >/dev/null 2>&1 || |
max@0 | 8 { |
max@0 | 9 echo "error: cmake 2.6 must be present to configure and install Armadillo" |
max@0 | 10 echo "" |
max@0 | 11 echo "cmake might be available as a package for your system," |
max@0 | 12 echo "or can be downloaded from http://cmake.org" |
max@0 | 13 ABORT=yes |
max@0 | 14 } |
max@0 | 15 } |
max@0 | 16 |
max@0 | 17 check_cmake |
max@0 | 18 |
max@0 | 19 test "$ABORT" = yes && exit -1 |
max@0 | 20 |
max@0 | 21 rm -f CMakeCache.txt |
max@0 | 22 cmake . |
max@0 | 23 |