Files
librubberband/otherbuilds/check.sh

14 lines
446 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
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
make -f otherbuilds/Makefile.macos clean
make -f otherbuilds/Makefile.ios
fi