mirror of
https://github.com/opencv/opencv.git
synced 2024-11-26 12:10:49 +08:00
8 lines
173 B
Bash
Executable File
8 lines
173 B
Bash
Executable File
#!/bin/sh
|
|
cd `dirname $0`/..
|
|
|
|
mkdir -p build_android_mips
|
|
cd build_android_mips
|
|
|
|
cmake -DANDROID_ABI=mips -DCMAKE_TOOLCHAIN_FILE=../android/android.toolchain.cmake $@ ../..
|