fixed include directory missing

This commit is contained in:
Volker Fischer 2019-09-21 18:18:29 +02:00
parent 12de5cd257
commit f2eff9c691

View file

@ -16,6 +16,8 @@ else
cd ${OPUS} cd ${OPUS}
./configure --enable-custom-modes --enable-fixed-point ./configure --enable-custom-modes --enable-fixed-point
make -j${NCORES} make -j${NCORES}
mkdir include/opus
cp include/*.h include/opus
cd .. cd ..
fi fi
@ -33,7 +35,7 @@ fi
# compile Jamulus with external Opus library # compile Jamulus with external Opus library
cd .. cd ..
qmake "CONFIG+=opus_shared_lib" Jamulus.pro qmake "CONFIG+=opus_shared_lib" "INCLUDEPATH+=distributions/${OPUS}/include" Jamulus.pro
make -j${NCORES} make -j${NCORES}
cd distributions cd distributions