Files
librubberband/otherbuilds/check.sh

18 lines
660 B
Bash
Raw Normal View History

#!/bin/bash
set -eu
if [ ! -d /Applications ]; then
make -f otherbuilds/Makefile.linux
2021-02-26 11:43:21 +00:00
g++ main/main.cpp lib/librubberband.a -I. -Isrc -o test -lsndfile -lsamplerate -lpthread
./test -V
g++ main/main.cpp single/RubberBandSingle.cpp -o test_single -lsndfile
./test_single -V
else
make -f otherbuilds/Makefile.macos
2021-02-26 11:43:21 +00:00
c++ main/main.cpp lib/librubberband.a -I. -Isrc -o test -lsndfile -lsamplerate -framework Accelerate
./test -V
2021-10-04 13:10:59 +01:00
c++ main/main.cpp single/RubberBandSingle.cpp -o test_single -lsndfile -framework Accelerate
./test_single -V
make -f otherbuilds/Makefile.macos clean
make -f otherbuilds/Makefile.ios
fi