Mercurial > hg > segmenter-vamp-plugin
comparison armadillo-3.900.4/configure @ 49:1ec0e2823891
Switch to using subrepo copies of qm-dsp, nnls-chroma, vamp-plugin-sdk; update Armadillo version; assume build without external BLAS/LAPACK
author | Chris Cannam |
---|---|
date | Thu, 13 Jun 2013 10:25:24 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
48:69251e11a913 | 49:1ec0e2823891 |
---|---|
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 (version 2.6 or later) 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 |