soxr-code/go

20 lines
531 B
Plaintext
Raw Normal View History

2012-12-03 18:25:33 +01:00
#!/bin/sh
set -e
2013-01-08 10:08:03 +01:00
# SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
2012-12-03 18:25:33 +01:00
# Licence for this file: LGPL v2.1 See LICENCE for details.
2013-03-02 10:00:39 +01:00
case $1 in -j*) j=$1; shift;; esac # Support -jX for parallel build/test
2013-03-01 09:19:35 +01:00
2012-12-03 18:25:33 +01:00
build=$1
test x$build = x && build=Release
rm -f CMakeCache.txt # Prevent interference from any in-tree build
mkdir -p $build
cd $build
cmake -DCMAKE_BUILD_TYPE=$build -Wno-dev ..
make $j
ctest $j || echo "FAILURE details in $build/Testing/Temporary/LastTest.log"