Home | History | Annotate | Download | only in scripts
      1 #!/bin/sh
      2 
      3 cd `dirname $0`/..
      4 
      5 mkdir -p build_android_x86
      6 cd build_android_x86
      7 
      8 cmake -DANDROID_ABI=x86 -DCMAKE_TOOLCHAIN_FILE=../android/android.toolchain.cmake $@ ../..
      9