mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-07-16 14:25:01 +00:00
11 lines
450 B
Bash
Executable File
11 lines
450 B
Bash
Executable File
#!/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/
|
|
LINKFLAGS="-Wl,--strip-all" CXXFLAGS="-fexceptions" CFLAGS="-fexceptions" ./waf configure -T release --android=armeabi-v7a-hard,4.9,21 --togles --disable-warns && ./waf build
|
|
|
|
|