You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
372 B
10 lines
372 B
2 years ago
|
#!/bin/sh
|
||
|
|
||
|
git submodule init && git submodule update
|
||
|
wget https://dl.google.com/android/repository/android-ndk-r10e-linux-x86_64.zip -o /dev/null
|
||
|
unzip android-ndk-r10e-linux-x86_64.zip
|
||
|
export ANDROID_NDK_HOME=$PWD/android-ndk-r10e/
|
||
|
export NDK_HOME=$PWD/android-ndk-r10e/
|
||
|
./waf configure -T debug --android=armeabi-v7a-hard,4.9,21 --togles --disable-warns &&
|
||
|
./waf build
|