soxr-code/go

19 lines
543 B
Plaintext
Raw Normal View History

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