Build prebuilt libraries only if they are requested, build Boost libraries automatically

This commit is contained in:
Sergii Pylypenko
2017-11-21 23:30:47 +02:00
parent df9ffa1c2b
commit 7aa2cd0726

View File

@@ -1111,6 +1111,11 @@ fi
echo Compiling prebuilt libraries
make -C project/jni -f Makefile.prebuilt
if echo "$CompiledLibraries" | grep -E 'iconv|charset|icu|crypto|ssl' > /dev/null; then
make -C project/jni -f Makefile.prebuilt
fi
if echo "$CompiledLibraries" | grep 'boost' > /dev/null; then
make -C project/jni -f Makefile.prebuilt boost
fi
echo Done