Add include path

This commit is contained in:
Chris Cannam
2021-02-26 11:43:21 +00:00
parent 2dffd9eb90
commit 8b86e0862c

View File

@@ -2,11 +2,11 @@
set -eu set -eu
if [ ! -d /Applications ]; then if [ ! -d /Applications ]; then
make -f otherbuilds/Makefile.linux make -f otherbuilds/Makefile.linux
g++ main/main.cpp lib/librubberband.a -Isrc -o test -lsndfile -lsamplerate -lpthread g++ main/main.cpp lib/librubberband.a -I. -Isrc -o test -lsndfile -lsamplerate -lpthread
./test -V ./test -V
else else
make -f otherbuilds/Makefile.macos make -f otherbuilds/Makefile.macos
c++ main/main.cpp lib/librubberband.a -Isrc -o test -lsndfile -lsamplerate -framework Accelerate c++ main/main.cpp lib/librubberband.a -I. -Isrc -o test -lsndfile -lsamplerate -framework Accelerate
./test -V ./test -V
make -f otherbuilds/Makefile.macos clean make -f otherbuilds/Makefile.macos clean
make -f otherbuilds/Makefile.ios make -f otherbuilds/Makefile.ios