kivy-ios/tools/build-all.sh
Mathieu Virbel 54347f6d8a Merge pull request #91 from Zen-CODE/add_openssl
Add optional openssl support
2014-09-29 22:04:26 +02:00

25 lines
736 B
Bash
Executable file

#!/bin/bash
. $(dirname $0)/environment.sh
try $(dirname $0)/build-libffi.sh
try $(dirname $0)/build-python.sh
# Uncomment the "try" line below to add OpenSSL support libraries
# For more detail: https://github.com/zen-code/ios-openssl
#try $(dirname $0)/build-openssl.sh
try $(dirname $0)/reduce-python.sh
try $(dirname $0)/build-ios.sh
try $(dirname $0)/build-sdl.sh
try $(dirname $0)/build-freetype.sh
try $(dirname $0)/build-sdlttf.sh
try $(dirname $0)/build-sdlmixer.sh
try $(dirname $0)/build-libjpeg.sh
try $(dirname $0)/build-pil.sh
try $(dirname $0)/build-kivy.sh
try $(dirname $0)/build-pyobjus.sh
try $(dirname $0)/build-plyer.sh
echo '== Build done'
echo "Available libraries in $BUILDROOT/lib"
echo $(ls $BUILDROOT/lib)