From 8b86e0862cdec9b5099398267db71c3d0d4c8736 Mon Sep 17 00:00:00 2001 From: Chris Cannam Date: Fri, 26 Feb 2021 11:43:21 +0000 Subject: [PATCH] Add include path --- otherbuilds/check.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/otherbuilds/check.sh b/otherbuilds/check.sh index 9d4d006..19aee02 100755 --- a/otherbuilds/check.sh +++ b/otherbuilds/check.sh @@ -2,11 +2,11 @@ set -eu if [ ! -d /Applications ]; then 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 else 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 make -f otherbuilds/Makefile.macos clean make -f otherbuilds/Makefile.ios